Exemplo n.º 1
0
 public PricingSkill GetPricingByType(string pricingType)
 {
     try
     {
         PricingDAL   repository   = new PricingDAL();
         PricingSkill pricingSkill = new PricingSkill();
         return(pricingSkill = repository.GetPricingByType(pricingType));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 public List <PricingSkill> GetCollectionPricingSkill(string pricingSkillType)
 {
     try
     {
         PricingDAL          repository       = new PricingDAL();
         List <PricingSkill> pricingSkillList = new List <PricingSkill>();
         return(pricingSkillList = repository.GetCollectionPricingSkillByType(pricingSkillType));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 3
0
 public Pricing GetPricing()
 {
     try
     {
         PricingDAL repository   = new PricingDAL();
         Pricing    pricingSkill = new Pricing();
         return(pricingSkill = repository.GetPricing());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }