private static RepoInstance GetRepoInstance(string sheetId = null, ISheetApiService sheetApi = null)
 {
     return(new RepoInstance(sheetId ?? new Faker().Lorem.Word(), sheetApi ?? SheetApiMocker.GetService()));
 }
 private static SheetRepositoryBase GetRepoBase(string sheetId = null, ISheetApiService sheetApi = null)
 {
     return(new SheetRepositoryBase(sheetId ?? new Faker().Lorem.Word(), sheetApi ?? SheetApiMocker.GetService()));
 }