Beispiel #1
0
        public async Task <bool> Modify(int _id, SupplierBranchModel _model)
        {
            SupplierBranch entity = await svcSupplierBranch.GetDetail(_id);

            if (entity == null)
            {
                return(false);
            }
            entity = iMapper.Map(_model, entity);
            return(await svcSupplierBranch.Modify(entity));
        }
Beispiel #2
0
        public async Task <int> Add(SupplierBranchModel _model)
        {
            SupplierBranch entity = iMapper.Map <SupplierBranch>(_model);

            return(await svcSupplierBranch.Add(entity));
        }