public EmployeeAttachmentListResponse Sync(SyncEmployeeAttachmentRequest request)
        {
            EmployeeAttachmentListResponse response = new EmployeeAttachmentListResponse();

            try
            {
                if (request.LastUpdatedAt != null)
                {
                    response.EmployeeAttachments = unitOfWork.GetEmployeeAttachmentRepository()
                                                   .GetEmployeeAttachmentsNewerThen(request.CompanyId, (DateTime)request.LastUpdatedAt)
                                                   .ConvertToEmployeeAttachmentViewModelList();
                }
                else
                {
                    response.EmployeeAttachments = unitOfWork.GetEmployeeAttachmentRepository()
                                                   .GetEmployeeAttachments(request.CompanyId)
                                                   .ConvertToEmployeeAttachmentViewModelList();
                }
                response.Success = true;
            }
            catch (Exception ex)
            {
                response = new EmployeeAttachmentListResponse();
                response.EmployeeAttachments = new List <EmployeeAttachmentViewModel>();
                response.Success             = false;
                response.Message             = ex.Message;
            }
            return(response);
        }
Example #2
0
        public EmployeeAttachmentListResponse Sync(SyncEmployeeAttachmentRequest request)
        {
            EmployeeAttachmentListResponse response = new EmployeeAttachmentListResponse();

            try
            {
                response = WpfApiHandler.SendToApi <SyncEmployeeAttachmentRequest, EmployeeAttachmentViewModel, EmployeeAttachmentListResponse>(request, "Sync");
            }
            catch (Exception ex)
            {
                response.Success = false;
                response.Message = ex.Message;
            }

            return(response);
        }
Example #3
0
        public JsonResult Sync([FromBody] SyncEmployeeAttachmentRequest request)
        {
            EmployeeAttachmentListResponse response = new EmployeeAttachmentListResponse();

            try
            {
                response = this.employeeAttachmentService.Sync(request);
            }
            catch (Exception ex)
            {
                response.Success = false;
                response.Message = ex.Message;
            }

            return(Json(response, new Newtonsoft.Json.JsonSerializerSettings()
            {
                Formatting = Newtonsoft.Json.Formatting.Indented
            }));
        }
        public void Sync(IEmployeeAttachmentService EmployeeAttachmentService, Action <int, int> callback = null)
        {
            try
            {
                SyncEmployeeAttachmentRequest request = new SyncEmployeeAttachmentRequest();
                request.CompanyId     = MainWindow.CurrentCompanyId;
                request.LastUpdatedAt = GetLastUpdatedAt(MainWindow.CurrentCompanyId);

                int toSync      = 0;
                int syncedItems = 0;

                EmployeeAttachmentListResponse response = EmployeeAttachmentService.Sync(request);
                if (response.Success)
                {
                    toSync = response?.EmployeeAttachments?.Count ?? 0;
                    List <EmployeeAttachmentViewModel> employeesFromDB = response.EmployeeAttachments;

                    using (SqliteConnection db = new SqliteConnection(SQLiteHelper.SqLiteTableName))
                    {
                        db.Open();
                        using (var transaction = db.BeginTransaction())
                        {
                            SqliteCommand deleteCommand = db.CreateCommand();
                            deleteCommand.CommandText = "DELETE FROM EmployeeAttachments WHERE Identifier = @Identifier";

                            SqliteCommand insertCommand = db.CreateCommand();
                            insertCommand.CommandText = SqlCommandInsertPart;

                            foreach (var employee in employeesFromDB)
                            {
                                deleteCommand.Parameters.AddWithValue("@Identifier", employee.Identifier);
                                deleteCommand.ExecuteNonQuery();
                                deleteCommand.Parameters.Clear();

                                if (employee.IsActive)
                                {
                                    employee.IsSynced = true;

                                    insertCommand = AddCreateParameters(insertCommand, employee);
                                    insertCommand.ExecuteNonQuery();
                                    insertCommand.Parameters.Clear();

                                    syncedItems++;
                                    callback?.Invoke(syncedItems, toSync);
                                }
                            }

                            transaction.Commit();
                        }
                        db.Close();
                    }
                }
                else
                {
                    throw new Exception(response.Message);
                }
            }
            catch (Exception ex)
            {
                MainWindow.ErrorMessage = ex.Message;
            }
        }