Exemplo n.º 1
0
 public SearchService(IUserEntity entity,IProductEntity product, ICategoryEntity category, IArticleEntity articel, IManufacturerEntity fac, IExamineeEntity exc )
 {
     this.entity = entity;
        this.Productentity = product;
        this.Categoryenity = category;
        this.Articelenity = articel;
        this.ManuFacenity = fac;
        this.ExamineeEntity = exc;
 }
Exemplo n.º 2
0
 public ProductService(IProductEntity entity,IModelEntity modelentity, IProductTypeEntity producttype,
     IManufacturerEntity manufacturer, ICategoryEntity category)
 {
     this.entity = entity;
        this.modelentity = modelentity;
        this.productentity = producttype;
        this.menufacturerentity = manufacturer;
        this.categoryentity = category;
     //bat 1 tien trinh check hang ton kho/thoi han khuyen mai
 }
Exemplo n.º 3
0
 public CategoryModel(ICategoryEntity category)
 {
     if (category != null)
     {
         CategoryId = category.CategoryId;
         Title      = category.Title;
         OrderId    = category.OrderId;
         Url        = category.Url;
         SectionId  = category.SectionId;
         Deleted    = category.Deleted;
     }
 }
 public CategoryService(ICategoryEntity entity)
 {
     this.entity = entity;
 }
Exemplo n.º 5
0
 public CategoryModel(ICategoryEntity categoryEntity)
 {
     _categoryEntity = categoryEntity;
 }