Example #1
0
 public MessageInfo(int msgId, int userId, int userChat, Utilities.Common.TYPE type)
 {
     MessageID = msgId;
     UserID = userId;
     UserChat = userChat;
     Type = type;
 }
Example #2
0
 public SaleItem(int saleId, int ownerId, Utilities.Common.TYPE type)
 {
     SaleId = saleId;
     OwnerId = ownerId;
     Type = type;
 }
Example #3
0
 public ProductInfo(int ownerId, int productId, Utilities.Common.TYPE type)
 {
     OwnerID = ownerId;
     ProductID = productId;
     Type = type;
 }