Exemple #1
0
        public PmsResponseDto AddExpenseCategory([FromBody] ExpenseCategoryRequestDto request)
        {
            if (request == null || request.ExpenseCategory == null)
            {
                throw new PmsException("ExpenseCategory Type can not be added.");
            }

            var response = new PmsResponseDto();
            var Id       = _iPmsLogic.AddExpenseCategory(request.ExpenseCategory);

            if (Id > 0)
            {
                response.ResponseStatus    = PmsApiStatus.Success.ToString();
                response.StatusDescription = "Record(s) saved successfully.";
                response.ResponseObject    = Id;
            }
            else
            {
                response.ResponseStatus    = PmsApiStatus.Failure.ToString();
                response.StatusDescription = "Operation failed.Please contact administrator.";
            }
            return(response);
        }