Esempio n. 1
0
 public EntityService(IEntityDAO <TEntity, TId> entityDAO)
 {
     this.entityDAO = entityDAO;
 }
 public bool IsDocumentKeyNull(IEntityDAO entity)
 {
     return(string.IsNullOrEmpty(entity.Id));
 }
Esempio n. 3
0
 public OrderService(IEntityDAO <Order, long> orderDAO) : base(orderDAO)
 {
 }