partial void DeleteCachivache(Cachivache instance);
 partial void InsertCachivache(Cachivache instance);
 partial void UpdateCachivache(Cachivache instance);
Пример #4
0
 private static cachivache Convert(Cachivache entity)
 {
     return new cachivache()
     {
         id = entity.id,
         name = entity.name,
         category = entity.categoryId,
         description = entity.description,
         price = entity.price,
         createdBy = entity.createdBy,
         createdDate = entity.createdDate,
         lastUpdate = entity.lastUpdate,
         lastUpdatedBy = entity.lastUpdatedBy
     };
 }