public string Save()
        {
            var accountingObject = new AccountingObjectCategoryModel
            {
            };

            if (View.AccountingObjectCategoryId == null)
            {
                return(null);
            }
            return(null);
        }
Esempio n. 2
0
 internal static AccountingObjectCategoryEntity ToDataTransferObject(AccountingObjectCategoryModel model)
 {
     return(model == null ? null : AutoMapper.Mapper.Map <AccountingObjectCategoryModel, AccountingObjectCategoryEntity>(model));
 }