public IEnumerable <MediaChannel> GetMetricChannel(string idAmsAccount)
 {
     myRepo = new AmsAccountMetricRepo(idAmsAccount);
     return(myRepo.Channels);
 }
 public MediaChannel GetAllMetricChannel(string idAmsAccount, string idChannel)
 {
     myRepo = new AmsAccountMetricRepo(idAmsAccount);
     return(myRepo.GetChannelMetricDatail(idChannel));
 }
 public AmsAccountMetricRepo GetAmsMetric(string idAmsAccount)
 {
     myRepo = new AmsAccountMetricRepo(idAmsAccount);
     return(myRepo);
 }