using System; namespace Model { public class ProtobufPacker : IMessagePacker { public byte[] SerializeToByteArray(object obj) { return ProtobufHelper.ToBytes(obj); } public string SerializeToText(object obj) { return MongoHelper.ToJson(obj); } public object DeserializeFrom(Type type, byte[] bytes) { return ProtobufHelper.FromBytes(type, bytes); } public object DeserializeFrom(Type type, byte[] bytes, int index, int count) { return ProtobufHelper.FromBytes(type, bytes, index, count); } public T DeserializeFrom(byte[] bytes) { return ProtobufHelper.FromBytes(bytes); } public T DeserializeFrom(byte[] bytes, int index, int count) { return ProtobufHelper.FromBytes(bytes, index, count); } public T DeserializeFrom(string str) { return MongoHelper.FromJson(str); } public object DeserializeFrom(Type type, string str) { return MongoHelper.FromJson(type, str); } } }