// GET api/<controller>/5
        public Can_MealAllowanceToMoneyModel Get(Guid id)
        {
            var service = new Can_MealAllowanceToMoneyServices();
            var model = new Can_MealAllowanceToMoneyModel();
            var result = service.GetData<Can_MealAllowanceToMoneyEntity>(id, ConstantSql.hrm_can_get_MealAllowanceToMoneyById,UserLogin, ref status).FirstOrDefault();

            if (result != null)
            {
                model = result.CopyData<Can_MealAllowanceToMoneyModel>();
            }
            model.ActionStatus = status;
            return model;
            
        }