diff --git a/.vs/Socioboard/v14/.suo b/.vs/Socioboard/v14/.suo index 58c11b86f..6917ba009 100644 Binary files a/.vs/Socioboard/v14/.suo and b/.vs/Socioboard/v14/.suo differ diff --git a/.vs/restore.dg b/.vs/restore.dg index d25e8ae51..e381c44c6 100644 --- a/.vs/restore.dg +++ b/.vs/restore.dg @@ -1,4 +1,8 @@ -#:E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard\Socioboard.xproj -E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard\Socioboard.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.Facebook\Socioboard.Facebook.xproj -E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard\Socioboard.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.Pinterest\Socioboard.Pinterest.xproj +#:E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\SociobordRssDataServices\SociobordRssDataServices.xproj +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\SociobordRssDataServices\SociobordRssDataServices.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Domain.Socioboard.xproj +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\SociobordRssDataServices\SociobordRssDataServices.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.Facebook\Socioboard.Facebook.xproj +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\SociobordRssDataServices\SociobordRssDataServices.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.Instagram\Socioboard.Instagram.xproj +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\SociobordRssDataServices\SociobordRssDataServices.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.LinkedIn\Socioboard.LinkedIn.xproj +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\SociobordRssDataServices\SociobordRssDataServices.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.Twitter\Socioboard.Twitter.xproj +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\SociobordRssDataServices\SociobordRssDataServices.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.Google\Socioboard.Google.xproj E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard.Facebook\Socioboard.Facebook.xproj|E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Domain.Socioboard.xproj diff --git a/src/Api.Socioboard/Controllers/ContentStudioController.cs b/src/Api.Socioboard/Controllers/ContentStudioController.cs index b1a4aa95a..fb95a4e64 100644 --- a/src/Api.Socioboard/Controllers/ContentStudioController.cs +++ b/src/Api.Socioboard/Controllers/ContentStudioController.cs @@ -41,51 +41,12 @@ public IActionResult GetAdvanceSearchData(string keywords) DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); return Ok(Repositories.ContentStudioRepository.GetAdvanceSearchdata(keywords, _redisCache, _appSettings)); } - - - //[HttpPost("saveDataIdForShare")] - //public IActionResult saveDataIdForShare(HttpRequestMessage shareData, [FromBody] Domain.Socioboard.Models.Mongo.ContentFeedsShareathon getAll)//List shareData - //{ - // Object FacebookPageId = Request.Form["shareData"]; - // string s = JsonConvert.SerializeObject(FacebookPageId); - // DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); - // //string res = Repositories.ContentStudioRepository.saveContentDataIdReposi(shareData, fbuserIds, timeIntervals, _redisCache, _appSettings); - // return Ok(true); - //} - - //[HttpPost("saveDataIdForShare")] - //public IActionResult saveDataIdForShare(Domain.Socioboard.Models.Mongo.postdata objdata) - //{ - - // //string s = JsonConvert.SerializeObject(FacebookPageId); - // DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); - // //string res = Repositories.ContentStudioRepository.saveContentDataIdReposi(shareData, fbuserIds, timeIntervals, _redisCache, _appSettings); - // return Ok(true); - //} - - - - - - - [HttpPost("saveDataIdForShare")] - public IActionResult saveDataIdForShare(string fbuserIds, int timeIntervals) - { - //List shareData - var FacebookPageId = Request.Form["shareData"]; - List lstshareData = JsonConvert.DeserializeObject>(FacebookPageId); - var fbuserIds1 = Request.Form["FacebookPageId"]; - //string s = JsonConvert.SerializeObject(FacebookPageId); - DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); - //string res = Repositories.ContentStudioRepository.saveContentDataIdReposi(shareData, fbuserIds, timeIntervals, _redisCache, _appSettings); - return Ok(true); - } - - + [HttpGet("GetYTAdvanceSearchData")] public IActionResult GetYTAdvanceSearchData(Domain.Socioboard.Enum.NetworkType network, int skip, int count) { DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + skip = 0; MongoRepository mongorepo = new MongoRepository("AdvanceSerachData", _appSettings); if (skip + count < 100) { @@ -134,6 +95,7 @@ public IActionResult GetSortByData(string sortType, int skip, int count) public IActionResult QuickTopics(Domain.Socioboard.Enum.NetworkType networkType, int skip, int count) { DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + skip = 0; MongoRepository mongorepo = new MongoRepository("AdvanceSerachData", _appSettings); if (skip + count < 100) { @@ -154,5 +116,43 @@ public IActionResult QuickTopics(Domain.Socioboard.Enum.NetworkType networkType, } + [HttpPost("saveDataIdForShare")] + public IActionResult saveDataIdForShare(long userId, string fbuserIds, int timeIntervals) + { + //List shareData + var FacebookPageId = Request.Form["shareData"]; + List lstshareData = JsonConvert.DeserializeObject>(FacebookPageId); + + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + string res = Repositories.ContentStudioRepository.saveContentDataIdReposi(lstshareData, userId, fbuserIds, timeIntervals, _redisCache, _appSettings, dbr); + return Ok(res); + } + + [HttpGet("ShareathonQueue")] + public IActionResult ShareathonQueue(long userId) + { + MongoRepository mongorepo = new MongoRepository("AdvanceSerachData", _appSettings); + IList lstdata = Repositories.ContentStudioRepository.ShareathonQueueReposi(userId, _appSettings); + return Ok(lstdata); + + } + + + [HttpPost("DeleteShareathon")] + public IActionResult DeleteShareathon(string PageShareathodId) + { + string pagedata = Repositories.ContentStudioRepository.Deleteshareathon(PageShareathodId, _appSettings); + return Ok(pagedata); + } + + + [HttpGet("UserpageShareathon")] + public IActionResult UserpageShareathon(long userId) + { + List lstPageShareathon = Repositories.ContentStudioRepository.updateShareathonByUserId(userId, _appSettings, _redisCache); + return Ok(lstPageShareathon); + } + + } } diff --git a/src/Api.Socioboard/Controllers/EwalletController.cs b/src/Api.Socioboard/Controllers/EwalletController.cs new file mode 100644 index 000000000..46d9d287b --- /dev/null +++ b/src/Api.Socioboard/Controllers/EwalletController.cs @@ -0,0 +1,82 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Logging; +using Api.Socioboard.Model; +using Microsoft.AspNetCore.Cors; +using System.Xml; +using System.Text.RegularExpressions; +using Socioboard.Twitter.App.Core; +using MongoDB.Driver; +using Domain.Socioboard.Models; + +// For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 + +namespace Api.Socioboard.Controllers +{ + [EnableCors("AllowAll")] + [Route("api/[controller]")] + public class EwalletController : Controller + { + public EwalletController(ILogger logger, Microsoft.Extensions.Options.IOptions settings, IHostingEnvironment env) + { + _logger = logger; + _appSettings = settings.Value; + _redisCache = new Helper.Cache(_appSettings.RedisConfiguration); + _env = env; + } + private readonly ILogger _logger; + private Helper.AppSettings _appSettings; + private Helper.Cache _redisCache; + private readonly IHostingEnvironment _env; + + //Ads verfication + + [HttpGet("GetEwalletTransactions")] + public IActionResult GetEwalletTransactions(long userid) + { + try + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List lsturl = dbr.Find(t => t.UserId == userid).ToList(); + if (lsturl != null) + { + return Ok(lsturl); + } + else + { + return NotFound(); + } + } + catch(Exception ex) + { + return NotFound(); + } + + + } + + [HttpGet("UserBalance")] + public IActionResult UserBalance(long userid) + { + try + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + double AddMoney = dbr.Find(t => t.UserId == userid && t.TransactionStatus == "Money Added").Sum(t => t.Amount); + double withdrawMoney = dbr.Find(t => t.UserId == userid && t.TransactionStatus == "Money withdraw").Sum(t => t.Amount); + double Balance = AddMoney - withdrawMoney; + return Ok(Balance); + } + catch(Exception ex) + { + return BadRequest(); + } + + + } + + } +} diff --git a/src/Api.Socioboard/Controllers/GoogleController.cs b/src/Api.Socioboard/Controllers/GoogleController.cs index 10fcc47bd..5e06c58f9 100644 --- a/src/Api.Socioboard/Controllers/GoogleController.cs +++ b/src/Api.Socioboard/Controllers/GoogleController.cs @@ -125,6 +125,10 @@ public IActionResult GoogleLogin(string code,Domain.Socioboard.Enum.SBAccountTyp { if (lstUser.First().ActivationStatus == Domain.Socioboard.Enum.SBUserActivationStatus.Active) { + if (lstUser.First().RefrralCode == null) + { + lstUser.First().RefrralCode = "SOCIOBOARD_" + lstUser.First().Id; + } DateTime d1 = DateTime.UtcNow; //User userTable = dbr.Single(t => t.EmailId == EmailId); //userTable.LastLoginTime = d1; diff --git a/src/Api.Socioboard/Controllers/GroupMemberController.cs b/src/Api.Socioboard/Controllers/GroupMemberController.cs index 3761595f2..f2fb37c9c 100644 --- a/src/Api.Socioboard/Controllers/GroupMemberController.cs +++ b/src/Api.Socioboard/Controllers/GroupMemberController.cs @@ -105,7 +105,7 @@ public IActionResult InviteGroupMembers(long groupId, string members) string html = System.IO.File.ReadAllText(path); html = html.Replace("[FirstName]", member.firstName); html = html.Replace("[JoinLink]", _appSettings.Domain + "/Home/GroupInvite?Token=" + member.memberCode + "&email=" + member.email); - _emailSender.SendMailSendGrid(_appSettings.frommail, "", member.email, "", "", "Socioboard Group Invitation Link", html, _appSettings.SendgridUserName, _appSettings.SendGridPassword); + _emailSender.SendMailSendGrid(_appSettings.frommail, "", member.email, "", "", "Socioboard Team Invitation Link", html, _appSettings.SendgridUserName, _appSettings.SendGridPassword); } } diff --git a/src/Api.Socioboard/Controllers/ImgLibraryController.cs b/src/Api.Socioboard/Controllers/ImgLibraryController.cs index 6ea2e1049..f979ffd4a 100644 --- a/src/Api.Socioboard/Controllers/ImgLibraryController.cs +++ b/src/Api.Socioboard/Controllers/ImgLibraryController.cs @@ -40,72 +40,92 @@ public ImgLibraryController(ILogger logger, Microsoft.Exte [HttpPost("SaveImageforPrivate")] public IActionResult SaveImageforPrivate(long userId,string imgName, IFormFile files) { - long imglength = 0; - var filename = ""; - var apiimgPath = ""; - var uploads = string.Empty; - string imgPath = string.Empty; - string imagePath= string.Empty; - if (files != null) + try { - - if (files.Length > 0) + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + double imgsize = dbr.Find(t => t.UserId == userId).Sum(t => t.ImageSize); + if(imgsize <= 20971520) { - var fileName = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.Parse(files.ContentDisposition).FileName.Trim('"'); - // await file.s(Path.Combine(uploads, fileName)); - filename = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue - .Parse(files.ContentDisposition) - .FileName - .Trim('"'); - var tempName = Domain.Socioboard.Helpers.SBHelper.RandomString(10) + '.' + fileName.Split('.')[1]; - filename = _env.WebRootPath + "\\upload\\UserImages" + $@"\{tempName}"; - imgPath = filename; - uploads = _appSettings.ApiDomain + "/api/Media/getUserImages?id=" + $@"{tempName}"; - //imglength = new System.IO.FileInfo(filenameforlength).Length; - // size += file.Length; - try + long imglength = 0; + var filename = ""; + var apiimgPath = ""; + var uploads = string.Empty; + string imgPath = string.Empty; + string imagePath = string.Empty; + string localpath = string.Empty; + if (files != null) { - using (FileStream fs = System.IO.File.Create(filename)) + + if (files.Length > 0) { - files.CopyTo(fs); - fs.Flush(); + var fileName = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.Parse(files.ContentDisposition).FileName.Trim('"'); + // await file.s(Path.Combine(uploads, fileName)); + filename = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue + .Parse(files.ContentDisposition) + .FileName + .Trim('"'); + var tempName = Domain.Socioboard.Helpers.SBHelper.RandomString(10) + '.' + fileName.Split('.')[1]; + filename = _env.WebRootPath + "\\upload\\UserImages" + $@"\{tempName}"; + localpath = filename; + imgPath = filename; + uploads = _appSettings.ApiDomain + "/api/Media/getUserImages?id=" + $@"{tempName}"; + //imglength = new System.IO.FileInfo(filenameforlength).Length; + // size += file.Length; + try + { + using (FileStream fs = System.IO.File.Create(filename)) + { + files.CopyTo(fs); + fs.Flush(); + } + imglength = new System.IO.FileInfo(filename).Length; + filename = uploads; + // long imglength = new System.IO.FileInfo(imagelocalPath).Length; + } + catch (System.Exception ex) + { + if (!string.IsNullOrEmpty(imagePath)) + { + uploads = imagePath; + } + } + } - imglength = new System.IO.FileInfo(filename).Length; - filename = uploads; - // long imglength = new System.IO.FileInfo(imagelocalPath).Length; } - catch (System.Exception ex) + else { - if (!string.IsNullOrEmpty(imagePath)) - { - uploads = imagePath; - } } - + Domain.Socioboard.Models.ImgLibrary lstImglibrary = new ImgLibrary(); + //long len = (new System.IO.FileInfo(filename)).Length; + lstImglibrary.UserId = userId; + lstImglibrary.ImageName = imgName; + lstImglibrary.ImagePath = filename; + lstImglibrary.ImageSize = imglength; + lstImglibrary.Imageuploadeddate = DateTime.UtcNow; + lstImglibrary.Tags = ""; + lstImglibrary.FolderType = "Private"; + lstImglibrary.LocalImagePath = localpath; + int SavedStatus = dbr.Add(lstImglibrary); + if (SavedStatus == 1) + { + return Ok("Image saved successfully"); + } + else + { + return BadRequest("Something went wrong"); + } } + else + { + return BadRequest("You have reached maximum library sapce"); + } + } - else - { - } - Domain.Socioboard.Models.ImgLibrary lstImglibrary = new ImgLibrary(); - DatabaseRepository dbr = new DatabaseRepository(_logger, _env); - //long len = (new System.IO.FileInfo(filename)).Length; - lstImglibrary.UserId = userId; - lstImglibrary.ImageName = imgName; - lstImglibrary.ImagePath = filename; - lstImglibrary.ImageSize = imglength; - lstImglibrary.Imageuploadeddate = DateTime.UtcNow; - lstImglibrary.Tags = ""; - lstImglibrary.FolderType = "Private"; - int SavedStatus = dbr.Add(lstImglibrary); - if(SavedStatus==1) - { - return Ok("Image saved successfully"); - } - else + catch(Exception ex) { return BadRequest("Something went wrong"); } + @@ -114,76 +134,93 @@ public IActionResult SaveImageforPrivate(long userId,string imgName, IFormFile f [HttpPost("SaveImageForPublic")] public IActionResult SaveImageForPublic(long userId, string imgName, IFormFile files) { - long imglength = 0; - var filename = ""; - var apiimgPath = ""; - var uploads = string.Empty; - string imgPath = string.Empty; - string imagePath = string.Empty; - string localpath = string.Empty; - if (files != null) + try { - - if (files.Length > 0) + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + double imgsize = dbr.Find(t => t.UserId == userId).Sum(t => t.ImageSize); + if(imgsize <= 20971520) { - var fileName = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.Parse(files.ContentDisposition).FileName.Trim('"'); - // await file.s(Path.Combine(uploads, fileName)); - filename = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue - .Parse(files.ContentDisposition) - .FileName - .Trim('"'); - var tempName = Domain.Socioboard.Helpers.SBHelper.RandomString(10) + '.' + fileName.Split('.')[1]; - filename = _env.WebRootPath + "\\upload\\UserImages" + $@"\{tempName}"; - localpath = filename; - imgPath = filename; - uploads = _appSettings.ApiDomain + "/api/Media/getUserImages?id=" + $@"{tempName}"; - //imglength = new System.IO.FileInfo(filenameforlength).Length; - // size += file.Length; - try + long imglength = 0; + var filename = ""; + var apiimgPath = ""; + var uploads = string.Empty; + string imgPath = string.Empty; + string imagePath = string.Empty; + string localpath = string.Empty; + if (files != null) { - using (FileStream fs = System.IO.File.Create(filename)) + + if (files.Length > 0) { - files.CopyTo(fs); - fs.Flush(); + var fileName = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.Parse(files.ContentDisposition).FileName.Trim('"'); + // await file.s(Path.Combine(uploads, fileName)); + filename = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue + .Parse(files.ContentDisposition) + .FileName + .Trim('"'); + var tempName = Domain.Socioboard.Helpers.SBHelper.RandomString(10) + '.' + fileName.Split('.')[1]; + filename = _env.WebRootPath + "\\upload\\UserImages" + $@"\{tempName}"; + localpath = filename; + imgPath = filename; + uploads = _appSettings.ApiDomain + "/api/Media/getUserImages?id=" + $@"{tempName}"; + //imglength = new System.IO.FileInfo(filenameforlength).Length; + // size += file.Length; + try + { + using (FileStream fs = System.IO.File.Create(filename)) + { + files.CopyTo(fs); + fs.Flush(); + } + imglength = new System.IO.FileInfo(filename).Length; + filename = uploads; + // long imglength = new System.IO.FileInfo(imagelocalPath).Length; + } + catch (System.Exception ex) + { + if (!string.IsNullOrEmpty(imagePath)) + { + uploads = imagePath; + } + } + } - imglength = new System.IO.FileInfo(filename).Length; - filename = uploads; - // long imglength = new System.IO.FileInfo(imagelocalPath).Length; } - catch (System.Exception ex) + else { - if (!string.IsNullOrEmpty(imagePath)) - { - uploads = imagePath; - } } - + Domain.Socioboard.Models.ImgLibrary lstImglibrary = new ImgLibrary(); + //DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + //long len = (new System.IO.FileInfo(filename)).Length; + lstImglibrary.UserId = userId; + lstImglibrary.ImageName = imgName; + lstImglibrary.ImagePath = filename; + lstImglibrary.ImageSize = imglength; + lstImglibrary.Imageuploadeddate = DateTime.UtcNow; + lstImglibrary.Tags = ""; + lstImglibrary.FolderType = "Public"; + lstImglibrary.LocalImagePath = localpath; + int SavedStatus = dbr.Add(lstImglibrary); + if (SavedStatus == 1) + { + return Ok("Image saved successfully"); + } + else + { + return BadRequest("Something went wrong"); + } + } + + else + { + return BadRequest("You have reached maximum library sapce"); } } - else - { - } - Domain.Socioboard.Models.ImgLibrary lstImglibrary = new ImgLibrary(); - DatabaseRepository dbr = new DatabaseRepository(_logger, _env); - //long len = (new System.IO.FileInfo(filename)).Length; - lstImglibrary.UserId = userId; - lstImglibrary.ImageName = imgName; - lstImglibrary.ImagePath = filename; - lstImglibrary.ImageSize = imglength; - lstImglibrary.Imageuploadeddate = DateTime.UtcNow; - lstImglibrary.Tags = ""; - lstImglibrary.FolderType = "Public"; - lstImglibrary.LocalImagePath = localpath; - int SavedStatus = dbr.Add(lstImglibrary); - if (SavedStatus == 1) - { - return Ok("Image saved successfully"); - } - else + catch (Exception ex) { return BadRequest("Something went wrong"); } - + } @@ -211,52 +248,87 @@ public IActionResult DeleteImage(long userId, long imgid) [HttpGet("LoadImagesForPublic")] public IActionResult LoadImagesForPublic(long groupId, long userId) { - DatabaseRepository dbr = new DatabaseRepository(_logger, _env); - Groupmembers grpadmin = dbr.Single(t => t.groupid == groupId && t.isAdmin == true); - List lstImages = dbr.Find(t => t.UserId == grpadmin.userId && t.FolderType == "Public").ToList(); - if (lstImages != null) + try { - return Ok(lstImages); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + Groupmembers grpadmin = dbr.Single(t => t.groupid == groupId && t.isAdmin == true); + List lstImages = dbr.Find(t => t.UserId == grpadmin.userId && t.FolderType == "Public").ToList(); + if (lstImages != null) + { + return Ok(lstImages); + } + else + { + return NotFound(); + } } - else + catch(Exception ex) { return NotFound(); } + } [HttpGet("LoadImagesForPrivate")] public IActionResult LoadImagesForPrivate(long userid) { - DatabaseRepository dbr = new DatabaseRepository(_logger, _env); - List lstImages = dbr.Find(t => t.UserId == userid && t.FolderType=="Private").ToList(); - if (lstImages != null) + try { - return Ok(lstImages); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List lstImages = dbr.Find(t => t.UserId == userid && t.FolderType == "Private").ToList(); + if (lstImages != null) + { + return Ok(lstImages); + } + else + { + return NotFound(); + } } - else + catch(Exception ex) { return NotFound(); } + } [HttpGet("Totalimagesize")] public IActionResult Totalimagesize(long userid) { - DatabaseRepository dbr = new DatabaseRepository(_logger, _env); - double imgsize = dbr.Find(t => t.UserId==userid).Sum(t=>t.ImageSize)/1024; - if (imgsize < 1024) + try { - string totalimgSize = Convert.ToString(Math.Truncate(imgsize))+"KB"; - return Ok(totalimgSize); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List _maxsize = new List(); + double imgsize = dbr.Find(t => t.UserId == userid).Sum(t => t.ImageSize) / 1024; + if (imgsize < 1024) + { + Domain.Socioboard.Models.maxsize _imgsize = new maxsize(); + string totalimgSize = Convert.ToString(Math.Round(imgsize, 2)) + "KB"; + _imgsize.max = 20971520; + _imgsize.totalinbytes = imgsize; + _imgsize.totalsize = totalimgSize; + _maxsize.Add(_imgsize); + return Ok(_maxsize); + } + else + { + Domain.Socioboard.Models.maxsize _imgsize = new maxsize(); + double img = imgsize / 1024; + string totalimgSize = Convert.ToString(Math.Round(img, 2)) + "MB"; + _imgsize.max = 20971520; + _imgsize.totalinbytes = imgsize; + _imgsize.totalsize = totalimgSize; + _maxsize.Add(_imgsize); + return Ok(_maxsize); + } } - else + catch(Exception ex) { - double img= imgsize / 1024; - string totalimgSize = Convert.ToString(Math.Truncate(img)) + "MB"; - return Ok(totalimgSize); + return BadRequest(); } + } diff --git a/src/Api.Socioboard/Controllers/NotificationsController.cs b/src/Api.Socioboard/Controllers/NotificationsController.cs new file mode 100644 index 000000000..f508eb0fc --- /dev/null +++ b/src/Api.Socioboard/Controllers/NotificationsController.cs @@ -0,0 +1,135 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Logging; +using Api.Socioboard.Model; +using Microsoft.AspNetCore.Cors; +using System.Xml; +using System.Text.RegularExpressions; +using Socioboard.Twitter.App.Core; +using MongoDB.Driver; +using Domain.Socioboard.Models; + +// For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 + +namespace Api.Socioboard.Controllers +{ + [EnableCors("AllowAll")] + [Route("api/[controller]")] + public class NotificationsController : Controller + { + public NotificationsController(ILogger logger, Microsoft.Extensions.Options.IOptions settings, IHostingEnvironment env) + { + _logger = logger; + _appSettings = settings.Value; + _redisCache = new Helper.Cache(_appSettings.RedisConfiguration); + _env = env; + } + private readonly ILogger _logger; + private Helper.AppSettings _appSettings; + private Helper.Cache _redisCache; + private readonly IHostingEnvironment _env; + + + [HttpGet("FindNotifications")] + public IActionResult FindNotifications(long userId) + { + try + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List lstschedulemsg = new List(); + List lstnotifications = dbr.Find(t => t.UserId == userId && t.ReadOrUnread == "Unread").ToList(); + if (lstnotifications != null) + { + foreach (Notifications notify in lstnotifications) + { + ScheduledMessage schedulemsg = dbr.Single(t => t.id == notify.MsgId); + lstschedulemsg.Add(schedulemsg); + } + if (lstschedulemsg != null) + { + return Ok(lstschedulemsg); + } + else + { + return NotFound(); + } + } + else + { + return NotFound(); + } + + } + catch (Exception ex) + { + return NotFound(); + } + + + } + + [HttpGet("FindAllNotifications")] + public IActionResult FindAllNotifications(long userId) + { + try + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List lstschedulemsg = new List(); + List lstnotifications = dbr.Find(t => t.UserId == userId).ToList(); + foreach (Notifications notify in lstnotifications) + { + ScheduledMessage schedulemsg = dbr.Single(t => t.id == notify.MsgId); + lstschedulemsg.Add(schedulemsg); + } + if (lstschedulemsg != null) + { + return Ok(lstschedulemsg); + } + else + { + return NotFound(); + } + } + catch(Exception ex) + { + return NotFound(); + } + + + } + + [HttpGet("UpdateNotifications")] + public IActionResult UpdateNotifications(long userId) + { + try + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List lstnotifications = dbr.Find(t => t.UserId == userId && t.ReadOrUnread == "Unread").ToList(); + foreach (Notifications notify in lstnotifications) + { + notify.ReadOrUnread = "Read"; + int status = dbr.Update(notify); + } + //int status = dbr.UpdateAll(lstnotifications); + if (lstnotifications != null) + { + return Ok(); + } + else + { + return NotFound(); + } + } + catch(Exception ex) + { + return NotFound(); + } + + + } + } +} diff --git a/src/Api.Socioboard/Controllers/SocialMessagesController.cs b/src/Api.Socioboard/Controllers/SocialMessagesController.cs index 65958c843..b22f1dd54 100644 --- a/src/Api.Socioboard/Controllers/SocialMessagesController.cs +++ b/src/Api.Socioboard/Controllers/SocialMessagesController.cs @@ -289,6 +289,7 @@ public async Task ComposeMessage(string message, string profileId return Ok("Posted"); } + [HttpPost("ScheduleMessage")] public async Task ScheduleMessage(string message, string profileId, long userId, string imagePath, string link, string scheduledatetime, string localscheduletime, IFormFile files, string messageText) { @@ -495,6 +496,7 @@ public async Task ScheduleMessage(string message, string profileId } return Ok("scheduled"); } + [HttpPost("PluginComposemessage")] public IActionResult PluginComposemessage(string profile, string twitterText, string tweetId, string tweetUrl, string facebookText, string url, string imgUrl, long userId) { @@ -606,6 +608,7 @@ public IActionResult PluginComposemessage(string profile, string twitterText, st { string ret = Helper.TwitterHelper.PostTwitterMessage(_appSettings, _redisCache, twitterText, ids[0], userId, imgUrl, true, dbr, _logger); } + } else { @@ -619,6 +622,7 @@ public IActionResult PluginComposemessage(string profile, string twitterText, st } return Ok("successfully posted"); } + [HttpPost("PluginScheduleMessage")] public IActionResult PluginScheduleMessage(string profile, string twitterText, string tweetId, string tweetUrl, string facebookText, string url, string imgUrl, long userId, string scheduleTime, string localscheduleTime) { @@ -724,6 +728,7 @@ public IActionResult PluginScheduleMessage(string profile, string twitterText, s } return Ok(); } + [HttpPost("UploadImageplugin")] public IActionResult UploadImageplugin(IFormFile files) { @@ -830,6 +835,7 @@ public IActionResult SchedulePagePost(string profileId, int TimeInterVal, long U return Ok("successfully added"); } + [HttpPost("DraftScheduleMessage")] public async Task DraftScheduleMessage(string message, long userId, string scheduledatetime, long groupId, string imagePath, IFormFile files) { @@ -903,6 +909,7 @@ public IActionResult GetAllScheduleMessage(long userId, long groupId) List lstScheduledMessage = Repositories.ScheduledMessageRepository.getUsreScheduleMessage(userId, groupId, _redisCache, _appSettings, dbr); return Ok(lstScheduledMessage); } + [HttpGet("DeleteSocialMessages")] public IActionResult DeleteSocialMessages(long socioqueueId, long userId, long GroupId) { @@ -962,6 +969,7 @@ public IActionResult EditScheduleMessage(long socioqueueId, long userId, long Gr List lstScheduleMessage = Repositories.ScheduledMessageRepository.EditScheduleMessage(socioqueueId, userId, GroupId, message, _redisCache, _appSettings, dbr); return Ok(lstScheduleMessage); } + [HttpGet("GetAllSentMessages")] public IActionResult GetAllSentMessages(long userId, long groupId) { @@ -969,6 +977,7 @@ public IActionResult GetAllSentMessages(long userId, long groupId) List lstScheduledMessage = Repositories.ScheduledMessageRepository.GetAllSentMessages(userId, groupId, _redisCache, _appSettings, dbr); return Ok(lstScheduledMessage.OrderByDescending(t => t.scheduleTime)); } + [HttpGet("GetAllSentMessagesCount")] public IActionResult GetAllSentMessagesCount(long userId, long groupId) { @@ -976,6 +985,7 @@ public IActionResult GetAllSentMessagesCount(long userId, long groupId) int GetAllSentMessagesCount = Repositories.ScheduledMessageRepository.GetAllSentMessagesCount(userId, groupId, dbr, _redisCache); return Ok(GetAllSentMessagesCount); } + [HttpGet("getAllSentMessageDetailsforADay")] public IActionResult getAllSentMessageDetailsforADay(long userId, long groupId, string day) { @@ -983,6 +993,7 @@ public IActionResult getAllSentMessageDetailsforADay(long userId, long groupId, List lstScheduledMessage = Repositories.ScheduledMessageRepository.getAllSentMessageDetailsforADay(userId, groupId, int.Parse(day), _redisCache, _appSettings, dbr); return Ok(lstScheduledMessage.OrderByDescending(t => t.scheduleTime)); } + [HttpGet("getAllSentMessageDetailsByDays")] public IActionResult getAllSentMessageDetailsByDays(long userId, long groupId, string days) { @@ -990,6 +1001,7 @@ public IActionResult getAllSentMessageDetailsByDays(long userId, long groupId, s List lstScheduledMessage = Repositories.ScheduledMessageRepository.getAllSentMessageDetailsByDays(userId, groupId, int.Parse(days), _redisCache, _appSettings, dbr); return Ok(lstScheduledMessage.OrderByDescending(t => t.scheduleTime)); } + [HttpGet("getAllSentMessageDetailsByMonth")] public IActionResult getAllSentMessageDetailsByMonth(long userId, long groupId, string month) { @@ -997,6 +1009,7 @@ public IActionResult getAllSentMessageDetailsByMonth(long userId, long groupId, List lstScheduledMessage = Repositories.ScheduledMessageRepository.getAllSentMessageDetailsByMonth(userId, groupId, int.Parse(month), _redisCache, _appSettings, dbr); return Ok(lstScheduledMessage.OrderByDescending(t => t.scheduleTime)); } + [HttpGet("GetAllScheduleMessageCalendar")] public IActionResult GetAllScheduleMessageCalendar(long userId, long groupId) { diff --git a/src/Api.Socioboard/Controllers/TwitterController.cs b/src/Api.Socioboard/Controllers/TwitterController.cs index 10942b8e7..c57972fcd 100644 --- a/src/Api.Socioboard/Controllers/TwitterController.cs +++ b/src/Api.Socioboard/Controllers/TwitterController.cs @@ -11,6 +11,7 @@ using Socioboard.Twitter.Authentication; using Microsoft.AspNetCore.Cors; using System.Text.RegularExpressions; +using Domain.Socioboard.Interfaces.Services; // For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 @@ -20,16 +21,18 @@ namespace Api.Socioboard.Controllers [Route("api/[controller]")] public class TwitterController : Controller { - public TwitterController(ILogger logger, Microsoft.Extensions.Options.IOptions settings, IHostingEnvironment appEnv) + public TwitterController(ILogger logger, IEmailSender email, Microsoft.Extensions.Options.IOptions settings, IHostingEnvironment appEnv) { _logger = logger; _appSettings = settings.Value; _redisCache = new Helper.Cache(_appSettings.RedisConfiguration); _appEnv = appEnv; + _emailSender = email; } private readonly ILogger _logger; private Helper.AppSettings _appSettings; private Helper.Cache _redisCache; + private readonly IEmailSender _emailSender; private readonly IHostingEnvironment _appEnv; @@ -339,11 +342,11 @@ public IActionResult Twitterfans(long groupId) [HttpGet("TwitterUserFollowers")] - public IActionResult TwitterUserFollowers(long groupId) + public IActionResult TwitterUserFollowers(string profileId) { DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); - List lstTwitterUserfans = Helper.TwitterHelper.twitterfollowerslist(groupId, dbr, _appSettings); - return Ok(lstTwitterUserfans); + List lstfollowerlist = Helper.TwitterHelper.twitterfollowerslist(profileId, dbr, _appSettings); + return Ok(lstfollowerlist); } [HttpPost("BlocksUser")] @@ -388,5 +391,38 @@ public IActionResult ReportSpam(string profileId, string spamScreenName, long us return Ok(userSpam_Status); } + [HttpPost("EmailMessage")] + public IActionResult EmailMessage(string profileIdFrom, string socioTwitterId, long userId, string sub, string message, string toMail, string profileScnNameFrom) + { + string sendStatus = string.Empty; + message = message.Replace("\n", "
"); + sendStatus = _emailSender.SendMailSendGrid(_appSettings.getInTouchToMail, "", toMail, "", "", sub, message, _appSettings.SendgridUserName, _appSettings.SendGridPassword); + Repositories.TwitterRepository.AddTwitterEmailmessage(userId, socioTwitterId, profileIdFrom, profileScnNameFrom, toMail, message, sub, _redisCache, _appSettings); + return Ok(sendStatus); + } + + [HttpGet("UserMentions")] + public IActionResult UserMentions(string profileId, int skip, int count) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + List lstTwtMessages = new List(); + + MongoRepository mongorepo = new MongoRepository("MongoTwitterMessage", _appSettings); + var builder = Builders.Sort; + var sort = builder.Descending(t => t.messageDate); + var result = mongorepo.FindWithRange(t => t.profileId == profileId && (t.type == Domain.Socioboard.Enum.TwitterMessageType.TwitterMention), sort, skip, count); + var task = Task.Run(async () => + { + return await result; + }); + IList lstTwitterTweets = task.Result; + if (lstTwitterTweets != null) + { + lstTwtMessages.AddRange(lstTwitterTweets); + } + return Ok(lstTwtMessages.OrderByDescending(t => t.messageDate)); + } + + } } diff --git a/src/Api.Socioboard/Controllers/UserController.cs b/src/Api.Socioboard/Controllers/UserController.cs index 8c6a7325f..123fc6f57 100644 --- a/src/Api.Socioboard/Controllers/UserController.cs +++ b/src/Api.Socioboard/Controllers/UserController.cs @@ -59,6 +59,8 @@ public IActionResult Register(User user) user.Password = SBHelper.MD5Hash(user.Password); user.UserName = "Socioboard"; user.UserType = "User"; + user.ReferralStatus = "InActive"; + //user.RefrralCode = SBHelper.RandomString(20); user.PayPalAccountStatus = Domain.Socioboard.Enum.PayPalAccountStatus.notadded; user.LastLoginTime = DateTime.UtcNow; if (user.AccountType == Domain.Socioboard.Enum.SBAccountType.Free) @@ -85,6 +87,8 @@ public IActionResult Register(User user) User nuser = dbr.Single(t => t.EmailId.Equals(user.EmailId)); if (SavedStatus == 1 && nuser != null) { + nuser.RefrralCode = "SOCIOBOARD_" + nuser.Id; + int SavedRefrral = dbr.Update(nuser); Groups group = new Groups(); group.adminId = nuser.Id; // group.id = nuser.Id; @@ -185,11 +189,6 @@ public IActionResult PhoneSignUp(User user) return Ok("Email verification mail sent successfully."); } - - - - - [HttpPost("SocioboardAccountCreation")] public IActionResult SocioboardAccountCreation(User user) { @@ -290,7 +289,10 @@ public IActionResult Login(UserLoginViewModel user) //{ // return Ok(lstUser.First()); //} - + if (lstUser.First().RefrralCode == null) + { + lstUser.First().RefrralCode = "SOCIOBOARD_" + lstUser.First().Id; + } DateTime d1 = DateTime.UtcNow; //User userTable = dbr.Single < User>(t => t.EmailId == user.UserName); lstUser.First().LastLoginTime = d1; @@ -1280,7 +1282,7 @@ public IActionResult EnableDisableSocialLogin(long userId, bool checkEnable) { DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); User user = dbr.Single(t => t.Id == userId); - if(user.TwostepEnable == false) + if (user.TwostepEnable == false) { user.SocialLoginEnableFb = checkEnable; int res = dbr.Update(user); @@ -1307,7 +1309,7 @@ public IActionResult EnableDisableSocialLogin(long userId, bool checkEnable) { return BadRequest("Can't enable social signin because two steps login has already enabled."); } - + } @@ -1364,6 +1366,10 @@ public IActionResult FacebookLogin(string AccessToken, Domain.Socioboard.Enum.SB { if (lstUser.First().ActivationStatus == Domain.Socioboard.Enum.SBUserActivationStatus.Active) { + if (lstUser.First().RefrralCode == null) + { + lstUser.First().RefrralCode = "SOCIOBOARD_" + lstUser.First().Id; + } DateTime d1 = DateTime.UtcNow; //User userTable = dbr.Single(t => t.EmailId == EmailId); //userTable.LastLoginTime = d1; @@ -1661,9 +1667,9 @@ public IActionResult UpdateUser(string firstName, string lastName, string userNa public IActionResult ChangePassword(long userId) { string currentPassword = Request.Form["currentPassword"]; - string newPassword= Request.Form["newPassword"]; - string conformPassword= Request.Form["conformPassword"]; - string systemId= Request.Form["systemId"]; + string newPassword = Request.Form["newPassword"]; + string conformPassword = Request.Form["conformPassword"]; + string systemId = Request.Form["systemId"]; systemId = Utility.Base64Decode(systemId); DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); User user = dbr.Single(t => t.Id == userId); @@ -1887,7 +1893,7 @@ public IActionResult validateforgotpwdToken(string emailId, string accessToken) /// EmailId does not exist:when user emailid does not exist /// [HttpPost("ResetPasswordMail")] - public IActionResult ResetPasswordMail(string emailId, string changePassword, string token,string systemId) + public IActionResult ResetPasswordMail(string emailId, string changePassword, string token, string systemId) { DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); User user = null; @@ -2360,6 +2366,124 @@ public string UpdateurlShortnerStatus(long userId, Domain.Socioboard.Enum.UrlSho return "Ok"; } + [HttpPost("VerifyRefrralCode")] + public IActionResult VerifyRefrralCode(string promo_code) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + User refrralcode = dbr.Single(t => t.RefrralCode == promo_code); + if (refrralcode != null) + { + return Ok("Refrral Code Applied"); + } + else + { + return BadRequest("Refrral Code Not Found"); + } + + } + [HttpPost("UpdateRefrralStatus")] + public IActionResult UpdateRefrralStatus(long userId) + { + try + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + User _user = dbr.Single(t => t.Id == userId); + _user.ReferralStatus = "Active"; + int result = dbr.Update(_user); + Domain.Socioboard.Models.Ewallet _ewallet = new Ewallet(); + if (result == 1) + { + User _refrreduser = dbr.Single(t => t.RefrralCode == _user.ReferdBy); + _ewallet.Fromid = _user.Id; + _ewallet.Frommailid = _user.EmailId; + _ewallet.EmailId = _refrreduser.EmailId; + _ewallet.UserId = _refrreduser.Id; + _ewallet.Transactiondate = DateTime.UtcNow; + _ewallet.TransactionId = SBHelper.RandomString(20); + _ewallet.TransactionStatus = "Money Added"; + _ewallet.TransactionType = "Refrral Program"; + if (_user.AccountType == Domain.Socioboard.Enum.SBAccountType.Standard || _user.AccountType == Domain.Socioboard.Enum.SBAccountType.Premium || _user.AccountType == Domain.Socioboard.Enum.SBAccountType.Deluxe || _user.AccountType == Domain.Socioboard.Enum.SBAccountType.Topaz || _user.AccountType == Domain.Socioboard.Enum.SBAccountType.Ruby || _user.AccountType == Domain.Socioboard.Enum.SBAccountType.Gold || _user.AccountType == Domain.Socioboard.Enum.SBAccountType.Platinum) + { + _ewallet.Amount = 50; + } + int ewalltstatus = dbr.Add(_ewallet); + if (ewalltstatus == 1) + { + return Ok("Ewallte transaction saved"); + } + else + { + return Ok("Ewallte transaction failed"); + } + + } + else + { + return Ok("User update Successfully"); + } + } + catch (Exception ex) + { + return Ok("Issue while updating record"); + } + + + } + [HttpPost("AuthLogin")] + public IActionResult AuthLogin(AuthUser authUser) + { + if (string.IsNullOrEmpty(authUser.AuthCode)) + { + authUser.AuthMessage = "Please enter valid authToken"; + return BadRequest(authUser); + } + if (authUser.AuthCode.Contains("1974224400.2310fd1.699477d40ff64cd6babfb0b3a6cf60fa")) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + User _User = dbr.Single(t => t.EmailId.Equals(authUser.email) && t.Password.Equals(SBHelper.MD5Hash(authUser.password))); + if (_User == null) + { + authUser.AuthMessage = "Invalid EmailId and password"; + return BadRequest(authUser); + } + if (_User.ExpiryDate < DateTime.UtcNow) + { + authUser.AuthMessage = "your account has been expired"; + return BadRequest(authUser); + } + else if (_User.ActivationStatus != Domain.Socioboard.Enum.SBUserActivationStatus.Active) + { + authUser.AuthMessage = "your account is not active please contact to support"; + return BadRequest(authUser); + } + else if (_User.PaymentStatus != Domain.Socioboard.Enum.SBPaymentStatus.Paid) + { + authUser.AuthMessage = "you are not paid user"; + return BadRequest(authUser); + } + else + { + authUser.socioboard_id = _User.Id; + authUser.Affiliate_id = _User.RefrralCode; + authUser.AuthMessage = "login successfully"; + authUser.country = _User.Country; + authUser.email = _User.EmailId; + authUser.first_name = _User.FirstName; + authUser.last_name = _User.LastName; + authUser.password = authUser.password; + authUser.phone = _User.PhoneCode + _User.PhoneNumber; + authUser.profile_pic_url = _User.ProfilePicUrl; + return Ok(authUser); + } + } + else + { + authUser.AuthMessage = "Invalid authToken"; + return BadRequest(authUser); + } + return Ok(); + + } } -} +} \ No newline at end of file diff --git a/src/Api.Socioboard/Helper/TwitterHelper.cs b/src/Api.Socioboard/Helper/TwitterHelper.cs index 6e86f0e56..21922d636 100644 --- a/src/Api.Socioboard/Helper/TwitterHelper.cs +++ b/src/Api.Socioboard/Helper/TwitterHelper.cs @@ -487,12 +487,12 @@ public static bool FollowAccount(oAuthTwitter OAuth, string Screen_name, string } - public static List twitterfollowerslist(long groupId, Model.DatabaseRepository dbr, Helper.AppSettings _appSettings) + public static List twitterfollowerslist(string profileId, Model.DatabaseRepository dbr, Helper.AppSettings _appSettings) { - string[] profileids = null; + string profileids = profileId; List lstfollowerlist = new List(); - List lstGroupprofiles = dbr.Find(t => t.groupId == groupId && t.profileType == Domain.Socioboard.Enum.SocialProfileType.Twitter).ToList(); - profileids = lstGroupprofiles.Select(t => t.profileId).ToArray(); + //List lstGroupprofiles = dbr.Find(t => t.groupId == groupId && t.profileType == Domain.Socioboard.Enum.SocialProfileType.Twitter).ToList(); + //profileids = lstGroupprofiles.Select(t => t.profileId).ToArray(); List lstAccRepo = dbr.Find(t => profileids.Contains(t.twitterUserId) && t.isActive).ToList(); oAuthTwitter oaut = null; Users twtUser = new Users(); diff --git a/src/Api.Socioboard/Repositories/ContentStudioRepository.cs b/src/Api.Socioboard/Repositories/ContentStudioRepository.cs index dfa091f34..9e65bdf80 100644 --- a/src/Api.Socioboard/Repositories/ContentStudioRepository.cs +++ b/src/Api.Socioboard/Repositories/ContentStudioRepository.cs @@ -79,13 +79,25 @@ public class ContentStudioRepository var builder = Builders.Sort; var sort = builder.Descending(t => t.postedTime); - var result = _RssRepository.FindWithRange(t => t.totalShareCount != 0, sort, 0, 150); + //var result = _RssRepository.FindWithRange(t => t.totalShareCount != 0, sort, 0, 150); + var result = _RssRepository.FindAdvance(t=> t.totalShareCount != 0); var task = Task.Run(async () => { return await result; }); IList lsttwt = task.Result.ToList(); + lsttwt = lsttwt.OrderByDescending(kt => kt.postedTime).ToList(); + // lsttwt = lsttwt.OrderByDescending(gb => gb.totalShareCount).ToList().Take(30).Skip(0).ToList(); + //if (lsttwt != null) + //{ + // //_redisCache.Set(Domain.Socioboard.Consatants.SocioboardConsts.CacheTwitterRecent100Feeds + profileId, lstFbFeeds.ToList()); + + // return lsttwt.ToList(); + //} + + + if (sortBy == "trending") { //return lsttwt.ToList(); @@ -160,49 +172,6 @@ public class ContentStudioRepository } } - //public static string saveContentDataIdReposi(List shareathon, string fbPageId, int timeInterval, Helper.Cache _redisCache, Helper.AppSettings settings) - //{ - - // MongoRepository mongorepo = new MongoRepository("ContentShareDataId", settings); - - // var ret = mongorepo.Find(t => t.postId == shareathon.FirstOrDefault().postId); - // var task = Task.Run(async () => - // { - // return await ret; - // }); - // int count = task.Result.Count; - // if (count > 0) - // { - // Domain.Socioboard.Models.Mongo.ContentShareDataId lstPostId = new Domain.Socioboard.Models.Mongo.ContentShareDataId(); - // lstPostId.Id = ObjectId.GenerateNewId(); - // lstPostId.strId = ObjectId.GenerateNewId().ToString(); - // lstPostId.postId = shareathon.FirstOrDefault().postId; - // lstPostId.UserId = shareathon.FirstOrDefault().UserId; - // lstPostId.FbPageId = fbPageId; - // lstPostId.RequestForShare = DateTime.UtcNow.ToString("yyyy/MM/dd HH:mm:ss"); - // try - // { - // mongorepo.Add(lstPostId); - // } - // catch (Exception ex) - // { - // return "not added"; - // } - - - // return "added successfully"; - - // } - // else - // { - // return "some problem while adding"; - // } - - - //} - - - public static List QuickTopicRepository(Domain.Socioboard.Enum.NetworkType networkType, Helper.Cache _redisCache, Helper.AppSettings settings) { @@ -223,5 +192,168 @@ public class ContentStudioRepository return null; } + + public static string saveContentDataIdReposi(List shareathon,long userId ,string fbPageId, int timeInterval, Helper.Cache _redisCache, Helper.AppSettings settings, Model.DatabaseRepository dbr) + { + + string[] lstProfileIds = null; + if (fbPageId != null) + { + lstProfileIds = fbPageId.Split(','); + fbPageId = lstProfileIds[0]; + } + + MongoRepository mongorepo = new MongoRepository("ContentFeedsShareathon", settings); + MongoRepository mongoreposhareId = new MongoRepository("ContentStudioShareathonIdData", settings); + + + + int totalval = 0; + foreach (var fbid in lstProfileIds) + { + + Domain.Socioboard.Models.Facebookaccounts listfb = dbr.FindSingle(t => t.FbUserId == fbid); + int countval = 0; + foreach (var item in shareathon) + { + var retval = mongoreposhareId.Find(t => t.FbPageId.Contains(fbid) && t.postId ==item.postId); + var taskval = Task.Run(async () => + { + return await retval; + }); + int countvalue = taskval.Result.Count; + if (countvalue < 1) + { + Domain.Socioboard.Models.Mongo.ContentStudioShareathonIdData lstIdforPost = new Domain.Socioboard.Models.Mongo.ContentStudioShareathonIdData(); + lstIdforPost.Id = ObjectId.GenerateNewId(); + lstIdforPost.strId = ObjectId.GenerateNewId().ToString(); + lstIdforPost.FbPageId = fbid; + lstIdforPost.Status = false; + lstIdforPost.UserId = listfb.UserId; + lstIdforPost.Timeintervalminutes = timeInterval; + lstIdforPost.postId = item.postId; + lstIdforPost.lastsharestamp = SBHelper.ConvertToUnixTimestamp(DateTime.UtcNow); + + try + { + mongoreposhareId.Add(lstIdforPost); + //countval++; + } + catch (Exception ex) + { + //return "not added"; + } + + } + int count = 0; + var ret = mongorepo.Find(t => t.postId.Contains(item.postId) && t.FbPageId.Contains(fbid)); + var task = Task.Run(async () => + { + return await ret; + }); + count = task.Result.Count; + + if (count < 1) + { + Domain.Socioboard.Models.Mongo.ContentFeedsShareathon lstforShareathon = new Domain.Socioboard.Models.Mongo.ContentFeedsShareathon(); + + lstforShareathon.Id = ObjectId.GenerateNewId(); + lstforShareathon.strId = ObjectId.GenerateNewId().ToString(); + lstforShareathon.FbPageId = fbid; + lstforShareathon.postId = item.postId; + lstforShareathon.networkType = item.networkType; + lstforShareathon.title = item.title; + lstforShareathon.facebookAccount = listfb.FbUserName; + lstforShareathon.ImageUrl = item.ImageUrl; + lstforShareathon.postUrl = item.postUrl; + lstforShareathon.videourl = item.videourl; + lstforShareathon.UserId = userId; + lstforShareathon.Timeintervalminutes = timeInterval; + lstforShareathon.lastsharestamp = SBHelper.ConvertToUnixTimestamp(DateTime.UtcNow); + lstforShareathon.Status = false; + try + { + mongorepo.Add(lstforShareathon); + countval++; + } + catch (Exception ex) + { + //return "not added"; + } + } + else + { + // return "some problem while adding"; + } + + totalval = countval; + } + } + + + if (totalval > 0) + { + return "added successfully"; + } + else + { + return "feed has already added"; + } + } + + public static string Deleteshareathon(string ShareathodId, Helper.AppSettings _appSettings) + { + try + { + MongoRepository _ShareathonRepository = new MongoRepository("ContentFeedsShareathon", _appSettings); + var builders = Builders.Filter; + FilterDefinition filter = builders.Eq("strId", ShareathodId); + _ShareathonRepository.Delete(filter); + return "success"; + } + catch (Exception ex) + { + return "Error"; + } + } + + + public static List ShareathonQueueReposi(long userId, Helper.AppSettings settings) + { + MongoRepository mongorepo = new MongoRepository("ContentFeedsShareathon", settings); + var ret = mongorepo.Find(t => t.UserId.Equals(userId)); + var task = Task.Run(async () => + { + return await ret; + }); + IList lsitdatashare = task.Result.ToList(); + return lsitdatashare.ToList(); + + + } + + + + public static List updateShareathonByUserId(long userId, Helper.AppSettings _appSettings, Helper.Cache _redisCache) + { + List iMmemPageShareathon = _redisCache.Get>(Domain.Socioboard.Consatants.SocioboardConsts.CachePageShareathonByUserId + userId); + if (iMmemPageShareathon != null) + { + return iMmemPageShareathon; + } + else + { + MongoRepository _ShareathonRepository = new MongoRepository("ContentFeedsShareathon", _appSettings); + var ret = _ShareathonRepository.Find(t => t.UserId == userId); + var task = Task.Run(async () => + { + return await ret; + }); + _redisCache.Set(Domain.Socioboard.Consatants.SocioboardConsts.CachePageShareathonByUserId + userId, task.Result.ToList()); + return task.Result.ToList(); + } + } + + } } diff --git a/src/Api.Socioboard/Repositories/GroupMembersRepository.cs b/src/Api.Socioboard/Repositories/GroupMembersRepository.cs index 481dccd9b..caa933686 100644 --- a/src/Api.Socioboard/Repositories/GroupMembersRepository.cs +++ b/src/Api.Socioboard/Repositories/GroupMembersRepository.cs @@ -74,8 +74,11 @@ public static int createGroupMember(long groupId, User user, Helper.Cache _redis public static List getGroupadmin(long groupId, Helper.Cache _redisCache, Model.DatabaseRepository dbr) { List adminDetails = dbr.Find(t => t.groupid == groupId && t.isAdmin).ToList(); - - return adminDetails; + long userID = adminDetails.First().userId; + List user = dbr.Find(t => t.Id == userID).ToList(); + string Email = user.First().EmailId; + adminDetails.First().email = Email; + return adminDetails; } public static List adminDelete(long groupId, Helper.Cache _redisCache, Model.DatabaseRepository dbr) diff --git a/src/Api.Socioboard/Repositories/TwitterRepository.cs b/src/Api.Socioboard/Repositories/TwitterRepository.cs index 85f4c0b93..7f2c57518 100644 --- a/src/Api.Socioboard/Repositories/TwitterRepository.cs +++ b/src/Api.Socioboard/Repositories/TwitterRepository.cs @@ -1910,5 +1910,26 @@ public static string TwitterSpam_user(string profileId, string screenName, long return "api issue while spam account"; } } + public static void AddTwitterEmailmessage(long userId, string socioTwitterId, string profileId, string profileScnName, string toMail, string message, string subject, Helper.Cache _redisCache, Helper.AppSettings settings) + { + string TwitterId = string.Empty; + Domain.Socioboard.Models.Mongo.TwitterFeedsEmailMessage insertData = new TwitterFeedsEmailMessage(); + MongoRepository mongorepo = new MongoRepository("TwitterFeedsEmailMessage", settings); + + insertData.Id = ObjectId.GenerateNewId(); + insertData.strId = ObjectId.GenerateNewId().ToString(); + insertData.dateLocal = DateTime.Now.ToString(); + insertData.dateUtc = DateTime.UtcNow.ToString(); + insertData.dateUnix = DateExtension.ToUnixTimestamp(DateTime.UtcNow); + insertData.socioTwitterId = socioTwitterId; + insertData.socioboardUserId = userId; + insertData.twitterUserIdFrom = profileId; + insertData.twitterScreenNameFrom = profileScnName; + insertData.mailTo = toMail; + insertData.messageText = message; + insertData.subjectText = subject; + + mongorepo.Add(insertData); + } } } diff --git a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe index a1b28c5af..495a42ff1 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe and b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe differ diff --git a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb index 3a31d2538..6b255cf0f 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe index a1b28c5af..495a42ff1 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb index 3a31d2538..6b255cf0f 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll index c28330833..a65baa84c 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb index 06a03d2e4..a71885325 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll index 031912ccf..6799799b6 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb index febd8b411..7eacdbd05 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll index 207689199..f387a8fd6 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb index b10f51544..aeed297cd 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll index 60d5086e5..b75bc3102 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb index 4b456d7a5..786881211 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll index 715d6bac4..e7590ba1c 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb index d89286358..7c0feb904 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll index 01538f3c4..2fe1dc3fa 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb index ae2e37e72..7c5444ab4 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll index 517740910..f1b3234bb 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb index 81c0a236c..73f9266d5 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb differ diff --git a/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache b/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache index 883ffb483..aae5d8fa8 100644 --- a/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache +++ b/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache @@ -1 +1 @@ -{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Program.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Startup.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdsOffersController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdvanceSearchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AffiliatesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AgencyUserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AssestLibraryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BillingController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BoardMeController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ContentStudioController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DiscoveryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DraftMessageController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ElasticMailReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacaebookPageReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacebookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GetInTouchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleAnalyticsReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMember.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMemberController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupProfilesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ImgLibraryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\LinkedInController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\MediaController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PaymentTransactionController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PinterestController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\RssFeedController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ShareathonController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\SocialMessagesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TaskController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TrainingController..cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\UserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ValuesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\WebHookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\YoutubeReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\FacebookGroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\LinkedInGroupController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\AppSettings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Cache.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\DiscoverySmart.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\FacebookHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnaltyicsReportingHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsAuthenticationHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsRealTimeHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GplusDiscoverySearchHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\InstagramHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\LinkedInHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\ScheduleMessageHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\SessionFactory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\TwitterHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Utility.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\DatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\ListeningMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\MongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AdsOffersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AffiliatesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ContentStudioRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DiscoveryRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DraftMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ElasticMailReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\EwalletWithdrawRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacaebookPageReportsRepositories.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacebookRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GoogleAnalyticsReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupMembersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\LinkedInAccountRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PaymentTransactionRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PinterestRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssFeedRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssNewsContentsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ScheduledMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ShareathonRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TaskRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\UploadVideo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\YoutubeReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\BoardMeRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\FacebookGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\LinkedInGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Facebook\\bin\\Debug\\net451\\Socioboard.Facebook.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Google\\bin\\Debug\\net451\\Socioboard.Google.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Instagram\\bin\\Debug\\net451\\Socioboard.Instagram.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.LinkedIn\\bin\\Debug\\net451\\Socioboard.LinkedIn.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Twitter\\bin\\Debug\\net451\\Socioboard.Twitter.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Pinterest\\bin\\Debug\\net451\\Socioboard.Pinterest.dll"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe.config"],"buildArguments":{"version-suffix":null}} \ No newline at end of file +{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Program.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Startup.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdsOffersController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdvanceSearchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AffiliatesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AgencyUserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AssestLibraryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BillingController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BoardMeController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ContentStudioController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DiscoveryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DraftMessageController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ElasticMailReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\EwalletController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacaebookPageReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacebookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GetInTouchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleAnalyticsReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMember.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMemberController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupProfilesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ImgLibraryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\LinkedInController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\MediaController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\NotificationsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PaymentTransactionController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PinterestController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\RssFeedController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ShareathonController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\SocialMessagesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TaskController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TrainingController..cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\UserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ValuesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\WebHookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\YoutubeReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\FacebookGroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\LinkedInGroupController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\AppSettings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Cache.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\DiscoverySmart.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\FacebookHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnaltyicsReportingHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsAuthenticationHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsRealTimeHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GplusDiscoverySearchHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\InstagramHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\LinkedInHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\ScheduleMessageHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\SessionFactory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\TwitterHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Utility.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\DatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\ListeningMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\MongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AdsOffersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AffiliatesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ContentStudioRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DiscoveryRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DraftMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ElasticMailReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\EwalletWithdrawRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacaebookPageReportsRepositories.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacebookRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GoogleAnalyticsReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupMembersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\LinkedInAccountRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PaymentTransactionRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PinterestRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssFeedRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssNewsContentsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ScheduledMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ShareathonRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TaskRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\UploadVideo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\YoutubeReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\BoardMeRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\FacebookGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\LinkedInGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Facebook\\bin\\Debug\\net451\\Socioboard.Facebook.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Google\\bin\\Debug\\net451\\Socioboard.Google.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Instagram\\bin\\Debug\\net451\\Socioboard.Instagram.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.LinkedIn\\bin\\Debug\\net451\\Socioboard.LinkedIn.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Twitter\\bin\\Debug\\net451\\Socioboard.Twitter.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Pinterest\\bin\\Debug\\net451\\Socioboard.Pinterest.dll"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe.config"],"buildArguments":{"version-suffix":null}} \ No newline at end of file diff --git a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp index 342ad2e01..c883ce7ad 100644 --- a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp +++ b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp @@ -215,6 +215,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\DiscoveryController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\DraftMessageController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\ElasticMailReportController.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\EwalletController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\FacaebookPageReportsController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\FacebookController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GetInTouchController.cs" @@ -230,6 +231,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\InstagramReportsController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\LinkedInController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\MediaController.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\NotificationsController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\PaymentTransactionController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\PinterestController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\RssFeedController.cs" diff --git a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp index af970ab27..d1cf5d205 100644 --- a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp +++ b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp @@ -219,6 +219,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\DiscoveryController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\DraftMessageController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\ElasticMailReportController.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\EwalletController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\FacaebookPageReportsController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\FacebookController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GetInTouchController.cs @@ -234,6 +235,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\InstagramReportsController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\LinkedInController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\MediaController.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\NotificationsController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\PaymentTransactionController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\PinterestController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\RssFeedController.cs diff --git a/src/Domain.Socioboard/Models/Ewallet.cs b/src/Domain.Socioboard/Models/Ewallet.cs new file mode 100644 index 000000000..55fb8dd67 --- /dev/null +++ b/src/Domain.Socioboard/Models/Ewallet.cs @@ -0,0 +1,26 @@ +using Domain.Socioboard.Enum; +using Domain.Socioboard.Interfaces.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; + +namespace Domain.Socioboard.Models +{ + public class Ewallet + { + + public Int64 Id { get; set; } + public Int64 UserId { get; set; } + [Required] + [EmailAddress] + public string EmailId { get; set; } + public string Frommailid { get; set; } + public Int64 Fromid { get; set; } + public Int64 Amount { get; set; } + public DateTime? Transactiondate { get; set; } + public string TransactionId { get; set; } + public string TransactionType { get; set; } + public string TransactionStatus { get; set; } + + } +} diff --git a/src/Domain.Socioboard/Models/Facebookaccounts.cs b/src/Domain.Socioboard/Models/Facebookaccounts.cs index 2c0872ea6..e4d84e10d 100644 --- a/src/Domain.Socioboard/Models/Facebookaccounts.cs +++ b/src/Domain.Socioboard/Models/Facebookaccounts.cs @@ -40,5 +40,7 @@ public Facebookaccounts() public virtual DateTime GroupShareathonUpdate { get; set; } public virtual DateTime lastpagereportgenerated { get; set; } public virtual bool Is90DayDataUpdated { get; set; } + public virtual DateTime contenetShareathonUpdate { get; set; } + } } diff --git a/src/Domain.Socioboard/Models/ImgLibrary.cs b/src/Domain.Socioboard/Models/ImgLibrary.cs index 43f143cb5..fbf416442 100644 --- a/src/Domain.Socioboard/Models/ImgLibrary.cs +++ b/src/Domain.Socioboard/Models/ImgLibrary.cs @@ -20,4 +20,10 @@ public class ImgLibrary public string FolderType { get; set; } } + public class maxsize + { + public string totalsize { get; set; } + public double max { get; set; } + public double totalinbytes { get; set; } + } } diff --git a/src/Domain.Socioboard/Models/Mongo/ContentFeedsShareathon.cs b/src/Domain.Socioboard/Models/Mongo/ContentFeedsShareathon.cs index 35379b7a6..ba38e0621 100644 --- a/src/Domain.Socioboard/Models/Mongo/ContentFeedsShareathon.cs +++ b/src/Domain.Socioboard/Models/Mongo/ContentFeedsShareathon.cs @@ -10,6 +10,7 @@ namespace Domain.Socioboard.Models.Mongo { + [BsonIgnoreExtraElements] public class ContentFeedsShareathon { [BsonId] @@ -17,32 +18,19 @@ public class ContentFeedsShareathon public ObjectId Id { get; set; } public string strId { get; set; } public string FbPageId { get; set; } - public long UserId { get; set; } - public string postdescription { get; set; } - public AdvanceSearchpostType postType { get; set; } + public long UserId { get; set; } + public string postdescription { get; set; } public NetworkType networkType { get; set; } - public string postId { get; set; } - public string domainType { get; set; } + public string postId { get; set; } public string title { get; set; } - public string userName { get; set; } - public string videourl { get; set; } - public double postedTime { get; set; } + public string facebookAccount { get; set; } + public string videourl { get; set; } public string ImageUrl { get; set; } public string postUrl { get; set; } - public long fbengagementCount { get; set; } - public long twtShareCount { get; set; } - public long linShareCount { get; set; } - public long gplusShareCount { get; set; } - public long pinShareCount { get; set; } - public long redditShareCount { get; set; } - public long totalShareCount { get; set; } - public long retweetCount { get; set; } - public long likeCount { get; set; } - public long repliesCount { get; set; } - public string linkedindescription { get; set; } - public string linkedinprofileurl { get; set; } - public int status { get; set; } + public double postedTime { get; set; } + public bool Status { get; set; } public virtual int Timeintervalminutes { get; set; } + public virtual double lastsharestamp { get; set; } } diff --git a/src/Domain.Socioboard/Models/Mongo/ContentStudioShareathonIdData.cs b/src/Domain.Socioboard/Models/Mongo/ContentStudioShareathonIdData.cs new file mode 100644 index 000000000..6d058a1ec --- /dev/null +++ b/src/Domain.Socioboard/Models/Mongo/ContentStudioShareathonIdData.cs @@ -0,0 +1,27 @@ +using Domain.Socioboard.Helpers; +using MongoDB.Bson; +using MongoDB.Bson.Serialization.Attributes; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Domain.Socioboard.Models.Mongo +{ + [BsonIgnoreExtraElements] + public class ContentStudioShareathonIdData + { + [BsonId] + [JsonConverter(typeof(ObjectIdConverter))] + public ObjectId Id { get; set; } + public string strId { get; set; } + public string FbPageId { get; set; } + public long UserId { get; set; } + public string postId { get; set; } + + public bool Status { get; set; } + public virtual int Timeintervalminutes { get; set; } + public virtual double lastsharestamp { get; set; } + } +} diff --git a/src/Domain.Socioboard/Models/Mongo/TwitterFeedsEmailMessage.cs b/src/Domain.Socioboard/Models/Mongo/TwitterFeedsEmailMessage.cs new file mode 100644 index 000000000..b02b5edb0 --- /dev/null +++ b/src/Domain.Socioboard/Models/Mongo/TwitterFeedsEmailMessage.cs @@ -0,0 +1,31 @@ +using Domain.Socioboard.Helpers; +using MongoDB.Bson; +using MongoDB.Bson.Serialization.Attributes; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Domain.Socioboard.Models.Mongo +{ + [BsonIgnoreExtraElements] + public class TwitterFeedsEmailMessage + { + [BsonId] + [JsonConverter(typeof(ObjectIdConverter))] + + public ObjectId Id { get; set; } + public string strId { get; set; } + public string dateUtc { get; set; } + public string dateLocal { get; set; } + public double dateUnix { get; set; } + public string socioTwitterId { get; set; } + public long socioboardUserId { get; set; } + public string twitterUserIdFrom { get; set; } + public string twitterScreenNameFrom { get; set; } + public string mailTo { get; set; } + public string messageText { get; set; } + public string subjectText { get; set; } + } +} diff --git a/src/Domain.Socioboard/Models/Notifications.cs b/src/Domain.Socioboard/Models/Notifications.cs new file mode 100644 index 000000000..ab7a03656 --- /dev/null +++ b/src/Domain.Socioboard/Models/Notifications.cs @@ -0,0 +1,20 @@ +using Domain.Socioboard.Enum; +using Domain.Socioboard.Interfaces.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; + +namespace Domain.Socioboard.Models +{ + public class Notifications + { + + public Int64 Id { get; set; } + public Int64 UserId { get; set; } + public DateTime? notificationtime { get; set; } + public Int64 MsgId { get; set; } + public string MsgStatus { get; set; } + public string ReadOrUnread { get; set; } + public string NotificationType { get; set; } + } +} diff --git a/src/Domain.Socioboard/Models/User.cs b/src/Domain.Socioboard/Models/User.cs index 8c350c0b6..65349885e 100644 --- a/src/Domain.Socioboard/Models/User.cs +++ b/src/Domain.Socioboard/Models/User.cs @@ -68,6 +68,9 @@ public class User : IUser public bool SocialLoginEnableFb { get; set; } public bool SocialLoginEnableGo { get; set; } public UrlShortener urlShortnerStatus { get; set; } + public string RefrralCode { get; set; } + public string ReferdBy { get; set; } + public string ReferralStatus { get; set; } } public class PiadUser @@ -85,4 +88,21 @@ public class UserDetails public List _user { get; set; } public int count { get; set; } } + + public class AuthUser + { + public long socioboard_id { get; set; } + public string first_name { get; set; } + public string last_name { get; set; } + public string email { get; set; } + public string password { get; set; } + public string profile_pic_url { get; set; } + public string phone { get; set; } + public string country { get; set; } + public string Affiliate_id { get; set; } + public string AuthMessage { get; set; } + public string AuthCode { get; set; } + + + } } diff --git a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll index c28330833..a65baa84c 100644 Binary files a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll and b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll differ diff --git a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb index 06a03d2e4..a71885325 100644 Binary files a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb and b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb differ diff --git a/src/Domain.Socioboard/compiler/resources/Mappings/Ewallet.hbm.xml b/src/Domain.Socioboard/compiler/resources/Mappings/Ewallet.hbm.xml new file mode 100644 index 000000000..4c661da10 --- /dev/null +++ b/src/Domain.Socioboard/compiler/resources/Mappings/Ewallet.hbm.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Domain.Socioboard/compiler/resources/Mappings/Facebookaccounts.hbm.xml b/src/Domain.Socioboard/compiler/resources/Mappings/Facebookaccounts.hbm.xml index fa98b2a31..757288416 100644 --- a/src/Domain.Socioboard/compiler/resources/Mappings/Facebookaccounts.hbm.xml +++ b/src/Domain.Socioboard/compiler/resources/Mappings/Facebookaccounts.hbm.xml @@ -86,5 +86,8 @@ + + + \ No newline at end of file diff --git a/src/Domain.Socioboard/compiler/resources/Mappings/Notifications.hbm.xml b/src/Domain.Socioboard/compiler/resources/Mappings/Notifications.hbm.xml new file mode 100644 index 000000000..b7a8b27fa --- /dev/null +++ b/src/Domain.Socioboard/compiler/resources/Mappings/Notifications.hbm.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Domain.Socioboard/compiler/resources/Mappings/User.hbm.xml b/src/Domain.Socioboard/compiler/resources/Mappings/User.hbm.xml index 2a068f700..645783a36 100644 --- a/src/Domain.Socioboard/compiler/resources/Mappings/User.hbm.xml +++ b/src/Domain.Socioboard/compiler/resources/Mappings/User.hbm.xml @@ -170,5 +170,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache b/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache index 7837aef25..8b84f09d3 100644 --- a/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache +++ b/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache @@ -1 +1 @@ -{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Consatants\\SocioboardConsts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsOfferAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdvanceSearchpostType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ArticlesAndBlogsTypes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\DemoPlantype.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\EwalletStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FacebookPagePromotion.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbPageSubscription.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FeedTableType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GPlusProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GroupMemberStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\NetworkType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PaymentType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PayPalAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBAccountType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBGroupUserStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBPaymentStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBRegistrationType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBUserActivationStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ScheduleStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SessionHistoryStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TaskStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TrendingType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TwitterMessageType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UrlShortener.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UserTrailStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ObjectIdConverter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\SBHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ThumbnailDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\UrlRSSfeedsNews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\ISocialProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\IUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IDatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\ISocialProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IUserRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\IEmailSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\ISmsSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AdsOffers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Affiliates.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AgencyUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AssestLibrary.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Coupons.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DemoRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Discovery.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Draft.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DropboxAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\EwalletWithdrawRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookpage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\FeedBack.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\GoogleAnalyticsAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Googleplusaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupmembers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupprofiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groups.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\ImgLibrary.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Instagramaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\InstagramDiscoveryFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinCompanyPage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedInData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\NewsLetter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Package.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PaymentTransaction.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PinterestAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\RssFeedUrl.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\ScheduledMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\SessionHistory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterFriendRelation.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterMutualFans.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterNameTable.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterRecentFollower.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\User.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\YoutubeChannel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupHashtagDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedInCompanyPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\AdvanceSerachData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ArticlesAndBlogs.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ContentFeedsShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ContentShareDataId.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ElasticmailReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacaebookPageDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePromotionDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Fbpublicpagedailyreports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FbPublicPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GoogleAnalyticsReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupdailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupPostKeyWords.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramDailyReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramSelfFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramUserDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkedinCompanyPagePosts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFacebookHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFbTrendingFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwitterHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtTrendingFeeds .cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookPageReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFbPostComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGoogleplusComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGplusFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestBoard.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserPins.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDirectMessages.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\PageShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Rss.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContents.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContentsFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TaskComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Tasks.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Trendingkeyword.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterRecentDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterUrlMentions.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeVideoDetailsList.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Properties\\AssemblyInfo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Services\\AuthMessageSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\AnalyticsGraphViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\CommentViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\DiscoveryViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookFanAddsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookPublicReportViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsCityPageViews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TaskCommentsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TasksViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TwitterTopFansViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\UserLoginViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\YoutubeProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AdsOffers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Affiliates.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AgencyUser.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AssestLibrary.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Coupons.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DemoRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Discovery.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Draft.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DropboxAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\EwalletWithdrawRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Facebookaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\FeedBack.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\GoogleAnalyticsAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Googleplusaccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Group.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupmembers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupprofiles.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\ImgLibrary.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Instagramaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinCompanyPage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\MongoBoards.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\NewsLetter.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Package.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PaymentTransaction.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PinterestAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\RssFeedUrl.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\ScheduledMessage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\SessionHistory.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Training.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterNameTable.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\User.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\YoutubeChannel.hbm.xml"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.pdb"],"buildArguments":{"version-suffix":null}} \ No newline at end of file +{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Consatants\\SocioboardConsts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsOfferAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdvanceSearchpostType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ArticlesAndBlogsTypes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\DemoPlantype.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\EwalletStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FacebookPagePromotion.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbPageSubscription.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FeedTableType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GPlusProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GroupMemberStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\NetworkType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PaymentType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PayPalAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBAccountType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBGroupUserStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBPaymentStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBRegistrationType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBUserActivationStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ScheduleStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SessionHistoryStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TaskStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TrendingType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TwitterMessageType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UrlShortener.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UserTrailStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ObjectIdConverter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\SBHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ThumbnailDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\UrlRSSfeedsNews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\ISocialProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\IUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IDatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\ISocialProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IUserRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\IEmailSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\ISmsSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AdsOffers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Affiliates.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AgencyUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AssestLibrary.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Coupons.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DemoRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Discovery.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Draft.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DropboxAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Ewallet.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\EwalletWithdrawRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookpage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\FeedBack.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\GoogleAnalyticsAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Googleplusaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupmembers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupprofiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groups.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\ImgLibrary.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Instagramaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\InstagramDiscoveryFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinCompanyPage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedInData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\NewsLetter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Notifications.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Package.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PaymentTransaction.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PinterestAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\RssFeedUrl.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\ScheduledMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\SessionHistory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterFriendRelation.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterMutualFans.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterNameTable.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterRecentFollower.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\User.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\YoutubeChannel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupHashtagDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedInCompanyPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\AdvanceSerachData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ArticlesAndBlogs.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ContentFeedsShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ContentShareDataId.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ContentStudioShareathonIdData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ElasticmailReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacaebookPageDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePromotionDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Fbpublicpagedailyreports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FbPublicPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GoogleAnalyticsReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupdailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupPostKeyWords.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramDailyReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramSelfFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramUserDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkedinCompanyPagePosts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFacebookHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFbTrendingFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwitterHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtTrendingFeeds .cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookPageReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFbPostComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGoogleplusComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGplusFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestBoard.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserPins.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDirectMessages.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\PageShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Rss.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContents.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContentsFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TaskComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Tasks.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Trendingkeyword.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterFeedsEmailMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterRecentDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterUrlMentions.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeVideoDetailsList.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Properties\\AssemblyInfo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Services\\AuthMessageSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\AnalyticsGraphViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\CommentViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\DiscoveryViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookFanAddsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookPublicReportViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsCityPageViews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TaskCommentsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TasksViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TwitterTopFansViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\UserLoginViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\YoutubeProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AdsOffers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Affiliates.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AgencyUser.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AssestLibrary.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Coupons.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DemoRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Discovery.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Draft.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DropboxAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Ewallet.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\EwalletWithdrawRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Facebookaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\FeedBack.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\GoogleAnalyticsAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Googleplusaccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Group.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupmembers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupprofiles.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\ImgLibrary.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Instagramaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinCompanyPage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\MongoBoards.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\NewsLetter.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Notifications.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Package.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PaymentTransaction.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PinterestAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\RssFeedUrl.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\ScheduledMessage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\SessionHistory.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Training.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterNameTable.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\User.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\YoutubeChannel.hbm.xml"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.pdb"],"buildArguments":{"version-suffix":null}} \ No newline at end of file diff --git a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp index bbac8f112..acd3ef862 100644 --- a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp +++ b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp @@ -58,6 +58,7 @@ -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Discovery.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Discovery.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Draft.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Draft.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\DropboxAccount.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.DropboxAccount.hbm.xml +-resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Ewallet.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Ewallet.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\EwalletWithdrawRequest.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.EwalletWithdrawRequest.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Facebookaccounts.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Facebookaccounts.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\FeedBack.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.FeedBack.hbm.xml @@ -72,6 +73,7 @@ -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\LinkedinCompanyPage.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.LinkedinCompanyPage.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\MongoBoards.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.MongoBoards.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\NewsLetter.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.NewsLetter.hbm.xml +-resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Notifications.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Notifications.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Package.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Package.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\PaymentTransaction.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.PaymentTransaction.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\PinterestAccount.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.PinterestAccount.hbm.xml @@ -136,6 +138,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Discovery.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Draft.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\DropboxAccount.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Ewallet.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\EwalletWithdrawRequest.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Facebookaccounts.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Facebookpage.cs" @@ -153,6 +156,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\LinkedInData.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\MongoBoards.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\NewsLetter.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Notifications.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Package.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\PaymentTransaction.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\PinterestAccount.cs" @@ -176,6 +180,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ArticlesAndBlogs.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentFeedsShareathon.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentShareDataId.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentStudioShareathonIdData.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ElasticmailReport.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacaebookPageDailyReports.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacebookPagePost.cs" @@ -231,6 +236,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TaskComments.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\Tasks.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\Trendingkeyword.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TwitterFeedsEmailMessage.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TwitterRecentDetails.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TwitterUrlMentions.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\YoutubeReports.cs" diff --git a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp index f4be42976..97f7a3813 100644 --- a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp +++ b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp @@ -60,6 +60,7 @@ --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Discovery.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Discovery.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Draft.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Draft.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\DropboxAccount.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.DropboxAccount.hbm.xml +--resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Ewallet.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Ewallet.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\EwalletWithdrawRequest.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.EwalletWithdrawRequest.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Facebookaccounts.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Facebookaccounts.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\FeedBack.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.FeedBack.hbm.xml @@ -74,6 +75,7 @@ --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\LinkedinCompanyPage.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.LinkedinCompanyPage.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\MongoBoards.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.MongoBoards.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\NewsLetter.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.NewsLetter.hbm.xml +--resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Notifications.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Notifications.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Package.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Package.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\PaymentTransaction.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.PaymentTransaction.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\PinterestAccount.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.PinterestAccount.hbm.xml @@ -138,6 +140,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Sociobo E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Discovery.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Draft.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\DropboxAccount.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Ewallet.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\EwalletWithdrawRequest.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Facebookaccounts.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Facebookpage.cs @@ -155,6 +158,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Sociobo E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\LinkedInData.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\MongoBoards.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\NewsLetter.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Notifications.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Package.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\PaymentTransaction.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\PinterestAccount.cs @@ -178,6 +182,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Sociobo E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ArticlesAndBlogs.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentFeedsShareathon.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentShareDataId.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentStudioShareathonIdData.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ElasticmailReport.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacaebookPageDailyReports.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacebookPagePost.cs @@ -233,6 +238,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Sociobo E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TaskComments.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\Tasks.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\Trendingkeyword.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TwitterFeedsEmailMessage.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TwitterRecentDetails.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\TwitterUrlMentions.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\YoutubeReports.cs diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll index c28330833..a65baa84c 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll and b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll differ diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb index 06a03d2e4..a71885325 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb and b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb differ diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll index 031912ccf..6799799b6 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll and b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll differ diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb index febd8b411..7eacdbd05 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb and b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb differ diff --git a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll index 207689199..f387a8fd6 100644 Binary files a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll and b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll differ diff --git a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb index b10f51544..aeed297cd 100644 Binary files a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb and b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb differ diff --git a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll index 60d5086e5..b75bc3102 100644 Binary files a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll and b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll differ diff --git a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb index 4b456d7a5..786881211 100644 Binary files a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb and b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb differ diff --git a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll index 715d6bac4..e7590ba1c 100644 Binary files a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll and b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll differ diff --git a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb index d89286358..7c0feb904 100644 Binary files a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb and b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb differ diff --git a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll index 01538f3c4..2fe1dc3fa 100644 Binary files a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll and b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll differ diff --git a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb index ae2e37e72..7c5444ab4 100644 Binary files a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb and b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb differ diff --git a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll index 517740910..f1b3234bb 100644 Binary files a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll and b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll differ diff --git a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb index 81c0a236c..73f9266d5 100644 Binary files a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb and b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb differ diff --git a/src/Socioboard/Controllers/HomeController.cs b/src/Socioboard/Controllers/HomeController.cs index b22a3f891..6b9dc77c4 100644 --- a/src/Socioboard/Controllers/HomeController.cs +++ b/src/Socioboard/Controllers/HomeController.cs @@ -88,13 +88,13 @@ public override void OnActionExecuting(ActionExecutingContext filterContext) public async Task Index() { Domain.Socioboard.Models.User user = HttpContext.Session.GetObjectFromJson("User"); - await SaveSessionData(); + HttpContext.Session.SetObjectAsJson("twosteplogin", "false"); if (user == null) { return RedirectToAction("Index", "Index"); } - + await SaveSessionData(); try { diff --git a/src/Socioboard/Controllers/IndexController.cs b/src/Socioboard/Controllers/IndexController.cs index 42c9fca97..28ab69ad2 100644 --- a/src/Socioboard/Controllers/IndexController.cs +++ b/src/Socioboard/Controllers/IndexController.cs @@ -471,8 +471,29 @@ public async Task PaymentSuccessful() try { Domain.Socioboard.Models.User _user = await _response.Content.ReadAsAsync(); - HttpContext.Session.SetObjectAsJson("User", _user); - return RedirectToAction("Index", "Index"); + if(user.ReferralStatus == "InActive" && user.ReferdBy!=null) + { + List> ReffralParameters = new List>(); + ReffralParameters.Add(new KeyValuePair("userId", user.Id.ToString())); + HttpResponseMessage refrralresponse = await WebApiReq.PostReq("/api/User/UpdateRefrralStatus", Parameters, "", "", _appSettings.ApiDomain); + if (refrralresponse.IsSuccessStatusCode) + { + HttpContext.Session.SetObjectAsJson("User", _user); + return RedirectToAction("Index", "Index"); + } + else + { + HttpContext.Session.SetObjectAsJson("User", _user); + return RedirectToAction("Index", "Index"); + } + + } + else + { + HttpContext.Session.SetObjectAsJson("User", _user); + return RedirectToAction("Index", "Index"); + } + } catch { } } diff --git a/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml b/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml index 8353ff21d..ca22312d6 100644 --- a/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml +++ b/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml @@ -12,29 +12,29 @@ @* - - - - - - - - - *@ + + + + + + + + + *@ @* - *@ + *@ @**@ @* - - - *@ + + + *@ @* - - - - - *@ + + + + + *@ @@ -69,17 +69,17 @@ @* - *@ + *@ @*
-
-
-
-
-
*@ +
+
+
+
+
*@
@@ -193,15 +193,15 @@ *@ @**@ + (function (i, s, o, g, r, a, m) { + i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () { + (i[r].q = i[r].q || []).push(arguments) + }, i[r].l = 1 * new Date(); a = s.createElement(o), + m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m) + })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga'); + ga('create', 'UA-58515856-3', 'auto'); + ga('send', 'pageview'); + *@ @@ -225,47 +225,68 @@ a.appendChild(r); })(window, document, '//static.hotjar.com/c/hotjar-', '.js?sv='); - - @if (TempData["Error"] != null) - { - - } - @if (TempData["Success"] != null) - { + - } - } - }); - function setCookie(cname, cvalue, exdays) { - var Base64 = { _keyStr: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", encode: function (e) { var t = ""; var n, r, i, s, o, u, a; var f = 0; e = Base64._utf8_encode(e); while (f < e.length) { n = e.charCodeAt(f++); r = e.charCodeAt(f++); i = e.charCodeAt(f++); s = n >> 2; o = (n & 3) << 4 | r >> 4; u = (r & 15) << 2 | i >> 6; a = i & 63; if (isNaN(r)) { u = a = 64 } else if (isNaN(i)) { a = 64 } t = t + this._keyStr.charAt(s) + this._keyStr.charAt(o) + this._keyStr.charAt(u) + this._keyStr.charAt(a) } return t }, decode: function (e) { var t = ""; var n, r, i; var s, o, u, a; var f = 0; e = e.replace(/[^A-Za-z0-9+/=]/g, ""); while (f < e.length) { s = this._keyStr.indexOf(e.charAt(f++)); o = this._keyStr.indexOf(e.charAt(f++)); u = this._keyStr.indexOf(e.charAt(f++)); a = this._keyStr.indexOf(e.charAt(f++)); n = s << 2 | o >> 4; r = (o & 15) << 4 | u >> 2; i = (u & 3) << 6 | a; t = t + String.fromCharCode(n); if (u != 64) { t = t + String.fromCharCode(r) } if (a != 64) { t = t + String.fromCharCode(i) } } t = Base64._utf8_decode(t); return t }, _utf8_encode: function (e) { e = e.replace(/rn/g, "n"); var t = ""; for (var n = 0; n < e.length; n++) { var r = e.charCodeAt(n); if (r < 128) { t += String.fromCharCode(r) } else if (r > 127 && r < 2048) { t += String.fromCharCode(r >> 6 | 192); t += String.fromCharCode(r & 63 | 128) } else { t += String.fromCharCode(r >> 12 | 224); t += String.fromCharCode(r >> 6 & 63 | 128); t += String.fromCharCode(r & 63 | 128) } } return t }, _utf8_decode: function (e) { var t = ""; var n = 0; var r = c1 = c2 = 0; while (n < e.length) { r = e.charCodeAt(n); if (r < 128) { t += String.fromCharCode(r); n++ } else if (r > 191 && r < 224) { c2 = e.charCodeAt(n + 1); t += String.fromCharCode((r & 31) << 6 | c2 & 63); n += 2 } else { c2 = e.charCodeAt(n + 1); c3 = e.charCodeAt(n + 2); t += String.fromCharCode((r & 15) << 12 | (c2 & 63) << 6 | c3 & 63); n += 3 } } return t } } - cpwd = cvalue; - cvalue = Base64.encode(cpwd); - var d = new Date(); - d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); - var expires = "expires=" + d.toUTCString(); - document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; - } + @if (TempData["Success"] != null) + { + + } + - - \ No newline at end of file diff --git a/src/Socioboard/Themes/Socioboard/Views/Index/Privacy.cshtml b/src/Socioboard/Themes/Socioboard/Views/Index/Privacy.cshtml index 69481f048..e66033488 100644 --- a/src/Socioboard/Themes/Socioboard/Views/Index/Privacy.cshtml +++ b/src/Socioboard/Themes/Socioboard/Views/Index/Privacy.cshtml @@ -72,6 +72,12 @@ However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.

+

No Unlawful Use or Objectionable Content

+

+ You shall not use the website in any unlawful manner or in any manner that interferes with or disrupts the integrity or performance of the platform and its components or infringes on the rights of another party. You shall not modify, adapt or hack any protected (encrypted or compiled) parts of the website, or otherwise attempt to gain unauthorized access to those parts or its related systems or networks. + You undertake not to promote any material that is unlawful, threatening, abusive, malicious, defamatory, false, materially inaccurate, or otherwise objectionable. You will not reproduce, publish, or distribute content in connection with the website that infringes any third party’s trademark, copyright, patent, trade secret, publicity, privacy, or other personal or proprietary right. +

+

Third-party links

Occasionally, at our discretion, we may include or offer third-party products or services on our website. These third-party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.

diff --git a/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml b/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml index a6ded8392..5ad0e7e7d 100644 --- a/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml +++ b/src/Socioboard/Themes/Socioboard/Views/Shared/_SocioboardLayout.cshtml @@ -158,7 +158,7 @@
  • Training
  • FAQs
  • Signup
  • -
  • SignIn
  • +
  • SignIn
  • menu @@ -216,7 +216,7 @@ --> -
    - +
    +
    + + +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    @@ -49,6 +49,7 @@

    Most Shared

    + @@ -66,32 +67,49 @@

    Most Shared

    - - + - + - + - + - + +
    Select Articles Action Facebook Engagements - {{lstData.title}} -
    + {{lstData.title}}
    By:{{lstData.userName}}
    + {{lstData.fbengagementCount}} + + {{lstData.fbengagementCount/1000 |number:0}}k + {{lstData.linShareCount}} + + {{lstData.linShareCount/1000 |number:0}}k + {{lstData.twtShareCount}} + + {{lstData.twtShareCount/1000 |number:0}}k + {{lstData.pinShareCount}} + + {{lstData.pinShareCount/1000 |number:0}}k + {{lstData.gplusShareCount}} + + {{lstData.gplusShareCount/1000 |number:0}}k + {{lstData.totalShareCount}} + {{lstData.totalShareCount/1000|number:0}}k +
    @@ -144,6 +162,10 @@

    Most Shared

    +
    + + +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/studio_shareathon_que.html b/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/studio_shareathon_que.html new file mode 100644 index 000000000..39d15faa4 --- /dev/null +++ b/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/studio_shareathon_que.html @@ -0,0 +1,172 @@ + + + + +
    + +
    +
    +

    Studio Shareathon Queue

    +
    +
    + + + +
    + +
    +
    +
    +
    +
    Content Shareathon List
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    S.NoFacebook AccountFeed DataTime IntervalStatusEditDelete
    {{current + $index+1}}{{shareData.facebookAccount}}{{shareData.title}}
    {{shareData.postUrl}}
    {{shareData.timeintervalminutes}}pendingposted + + + +
    +
    +
    +
    +
    +
    + + + + + +
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/trending_content.html b/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/trending_content.html index 78f1b80cb..5d861208c 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/trending_content.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/trending_content.html @@ -25,8 +25,13 @@
    -
    -

    Today's Trending Content

    +
    +
    +

    Trending Content

    +
    +
    @@ -92,31 +97,46 @@

    Today's Trending Content

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +
    +
    - - -
    -
    - -
    +
    - post + post + wait
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html index fe2479c7d..8e3171094 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/dashboard.html @@ -397,7 +397,7 @@
    Oops!
    You have no profiles
    - + {{data['linkdINcompanyaccount']['linkedinPageName']}}

    Followers: {{ldata['linkdINcompanyaccount']['numFollowers']}}

    Location: {{data['linkdINcompanyaccount']['locations']}}

    @@ -407,7 +407,7 @@
    Oops!
    You have no profiles
    - + {{data['linkdINcompanyaccount']['linkedinPageName']}}

    Followers: {{ldata['linkdINcompanyaccount']['numFollowers']}}

    Location: {{data['linkdINcompanyaccount']['locations']}}

    @@ -1247,8 +1247,12 @@
    Recent Followers
    --> -
    - +
    +
    + + +
    +
    • -
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    -
    + +
    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html index e4d2cb68f..b8b898afb 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/dashboard/profiles.html @@ -349,7 +349,7 @@
    Oops!
    You have no profiles
    - + {{data['linkdINcompanyaccount']['linkedinPageName']}}

    Followers: {{ldata['linkdINcompanyaccount']['numFollowers']}}

    Location: {{data['linkdINcompanyaccount']['locations']}}

    @@ -359,7 +359,7 @@
    Oops!
    You have no profiles
    - + {{data['linkdINcompanyaccount']['linkedinPageName']}}

    Followers: {{ldata['linkdINcompanyaccount']['numFollowers']}}

    Location: {{data['linkdINcompanyaccount']['locations']}}

    @@ -387,7 +387,7 @@
    Oops!
    You have no profiles
    - + {{data['linkdInaccount']['linkedinUserName']}}

    Followers: {{data['linkdInaccount']['connections']}}

    Email: {{data['linkdInaccount']['emailId']}}

    @@ -400,7 +400,7 @@
    Oops!
    You have no profiles
    - + {{data['linkdInaccount']['linkedinUserName']}}

    Followers: {{data['linkdInaccount']['connections']}}

    Following: {{data['linkdInaccount']['emailId']}}

    diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html b/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html index 9099a2842..cfd58f097 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/design/design_feeds.html @@ -327,8 +327,11 @@

    Categories Featured

    --> -
    - +
    +
    + + +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    --> -
    - +
    +
    + + +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    --> -
    - +
    +
    + + +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +
    • -
    • +