Ejemplo n.º 1
0
        public static string[] SkillExchangeData(int RowNum)
        {
            int count = Int32.Parse(TagsCntData(RowNum));

            string[] SkillExchngData = new string[count];
            ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
            for (int i = 0; i < count; i++)
            {
                SkillExchngData[i] = ExcelLibHelpers.ReadData((i + RowNum), "Skill-Exchange");
            }
            return(SkillExchngData);
        }
Ejemplo n.º 2
0
 public static string EndDateData(int RowNum)
 {
     ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
     return(ExcelLibHelpers.ReadData(RowNum, "End date"));
 }
Ejemplo n.º 3
0
 public static string TagsDataCount(int RowNum)
 {
     ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
     return(ExcelLibHelpers.ReadData(RowNum, "TagsCount"));
 }
Ejemplo n.º 4
0
 public static string ActvStatusData(int RowNum)
 {
     ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
     return(ExcelLibHelpers.ReadData(RowNum, "ActiveStatus"));
 }
Ejemplo n.º 5
0
 public static string SrvcTypeData(int RowNum)
 {
     ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
     return(ExcelLibHelpers.ReadData(RowNum, "Service Type"));
 }
Ejemplo n.º 6
0
 public static string SubCategData(int RowNum)
 {
     ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
     return(ExcelLibHelpers.ReadData(RowNum, "Subcategory"));
 }
Ejemplo n.º 7
0
 public static string AvailableDays(int RowNum)
 {
     ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
     return(ExcelLibHelpers.ReadData(RowNum, "Available Days"));
 }
Ejemplo n.º 8
0
 public static string CreditValue(int RowNum)
 {
     ExcelLibHelpers.PopulateInCollection(ExcelPath, "ShareSkillPage");
     return(ExcelLibHelpers.ReadData(RowNum, "Credit"));
 }